Skip to content

Commit 9b75bfd

Browse files
committed
Release v3.2.0
Signed-off-by: Ahmet Alp Balkan <[email protected]>
1 parent b420081 commit 9b75bfd

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

README.md

+7-6
Original file line numberDiff line numberDiff 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

3333
type 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

6868
type 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+
```

0 commit comments

Comments
 (0)