File tree 4 files changed +12
-3
lines changed
4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
4
4
and this project adheres to [ Semantic
5
5
Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
+ ## [ v4.10.1] - 2022-04-15
8
+
9
+ ### Fixes
10
+
11
+ - Properly assign new query object in models.Pural()
12
+
7
13
## [ v4.10.0] - 2022-04-15
8
14
9
15
### Added
Original file line number Diff line number Diff line change @@ -22,4 +22,7 @@ require (
22
22
modernc.org/sqlite v1.14.5
23
23
)
24
24
25
- retract v4.9.0 // Generated code shows v4.8.6, messed up commit tagging and untidy go.mod
25
+ retract (
26
+ v4.10.0 // Generated models are invalid due to a wrong assignment
27
+ v4.9.0 // Generated code shows v4.8.6, messed up commit tagging and untidy go.mod
28
+ )
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import (
15
15
"github.com/volatiletech/sqlboiler/v4/importers"
16
16
)
17
17
18
- const sqlBoilerVersion = "4.10.0 "
18
+ const sqlBoilerVersion = "4.10.1 "
19
19
20
20
var (
21
21
flagConfigFile string
Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ func {{$alias.UpPlural}}(mods ...qm.QueryMod) {{$alias.DownSingular}}Query {
14
14
queries.SetSelect(q, []string{" {{$schemaTable}}.*" } )
15
15
}
16
16
17
- return { {$alias .DownSingular} }Query{ NewQuery(q) }
17
+ return { {$alias .DownSingular} }Query{ q }
18
18
}
You can’t perform that action at this time.
0 commit comments