File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ Usage is as easy as chaining methods like:
2828** Example 1: Find all owners of cars manufactured after 2015**
2929
3030``` go
31- import . " github.com/ahmetb/go-linq"
31+ import . " github.com/ahmetb/go-linq/v3 "
3232
3333type Car struct {
3434 year int
@@ -63,7 +63,7 @@ From(cars).WhereT(func(c Car) bool {
6363** Example 2: Find the author who has written the most books**
6464
6565``` go
66- import . " github.com/ahmetb/go-linq"
66+ import . " github.com/ahmetb/go-linq/v3 "
6767
6868type Book struct {
6969 id int
@@ -165,11 +165,12 @@ From(sentences).
165165
166166## Release Notes
167167
168- ~~~
169- v3.0.2 (2020-02-23 )
168+ ``` text
169+ v3.2.0 (2020-12-29 )
170170* Added FromChannelT().
171+ * Added DefaultIfEmpty().
171172
172- v3.0.1 (2019-07-09)
173+ v3.1.0 (2019-07-09)
173174* Support for Go modules
174175* Added IndexOf()/IndexOfT().
175176
@@ -220,4 +221,4 @@ v0.9-rc1
220221* type assertion limitations are unresolved
221222* travis-ci.org build integrated
222223* open sourced on github, master & dev branches
223- ~~~
224+ ```
You can’t perform that action at this time.
0 commit comments