Skip to content

Commit

Permalink
Release 2.2.0 (#112)
Browse files Browse the repository at this point in the history
* Updating workflow and README

* modifying workflow file

* fix workflow go version

* workflow array syntax

* fixing workflow

* moron, it's pulling go 1.2.2

* if it ain't broke...
  • Loading branch information
deckarep authored Mar 5, 2023
1 parent 13f8b1d commit d9a5ce2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.18]
go-version: [1.20.1]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -19,4 +19,4 @@ jobs:
run: |
go test -v -race ./...
# go vet ./...
# go test -bench=.
# go test -bench=.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,11 @@

The missing `generic` set collection for the Go language. Until Go has sets built-in...use this.

## Update 3/26/2022
* Packaged version: `2.0.0` release for generics support with breaking changes.
## Update 3/5/2023
* Packaged version: `2.2.0` release includes a refactor to minimize pointer indirection, better method documentation standards and a few constructor convenience methods to increase ergonomics when appending items `Append` or creating a new set from an exist `Map`.
* supports `new generic` syntax
* Go `1.18.0` or higher
* Workflow tested on Go `1.20`

![With Generics](new_improved.jpeg)

Expand Down

0 comments on commit d9a5ce2

Please sign in to comment.