Skip to content

Commit d9a5ce2

Browse files
authored
Release 2.2.0 (#112)
* 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...
1 parent 13f8b1d commit d9a5ce2

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.18]
7+
go-version: [1.20.1]
88
os: [ubuntu-latest, macos-latest, windows-latest]
99
runs-on: ${{ matrix.os }}
1010
steps:
@@ -19,4 +19,4 @@ jobs:
1919
run: |
2020
go test -v -race ./...
2121
# go vet ./...
22-
# go test -bench=.
22+
# go test -bench=.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66

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

9-
## Update 3/26/2022
10-
* Packaged version: `2.0.0` release for generics support with breaking changes.
9+
## Update 3/5/2023
10+
* 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`.
1111
* supports `new generic` syntax
1212
* Go `1.18.0` or higher
13+
* Workflow tested on Go `1.20`
1314

1415
![With Generics](new_improved.jpeg)
1516

0 commit comments

Comments
 (0)