Skip to content

Commit

Permalink
Release v3.2.0
Browse files Browse the repository at this point in the history
Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
  • Loading branch information
ahmetb committed Dec 29, 2020
1 parent b420081 commit 9b75bfd
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Usage is as easy as chaining methods like:
**Example 1: Find all owners of cars manufactured after 2015**

```go
import . "github.com/ahmetb/go-linq"
import . "github.com/ahmetb/go-linq/v3"

type Car struct {
year int
Expand Down Expand Up @@ -63,7 +63,7 @@ From(cars).WhereT(func(c Car) bool {
**Example 2: Find the author who has written the most books**

```go
import . "github.com/ahmetb/go-linq"
import . "github.com/ahmetb/go-linq/v3"

type Book struct {
id int
Expand Down Expand Up @@ -165,11 +165,12 @@ From(sentences).

## Release Notes

~~~
v3.0.2 (2020-02-23)
```text
v3.2.0 (2020-12-29)
* Added FromChannelT().
* Added DefaultIfEmpty().
v3.0.1 (2019-07-09)
v3.1.0 (2019-07-09)
* Support for Go modules
* Added IndexOf()/IndexOfT().
Expand Down Expand Up @@ -220,4 +221,4 @@ v0.9-rc1
* type assertion limitations are unresolved
* travis-ci.org build integrated
* open sourced on github, master & dev branches
~~~
```

0 comments on commit 9b75bfd

Please sign in to comment.