You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,17 @@ The missing `generic` set collection for the Go language. Until Go has sets bui
9
9
## Psst
10
10
* Hi there, 👋! Do you use or have interest in the [Zig programming language](https://ziglang.org/) created by Andrew Kelley? If so, the golang-set project has a new sibling project: [ziglang-set](https://github.com/deckarep/ziglang-set)! Come check it out!
11
11
12
+
## Update 3/14/2025
13
+
* Packaged version: `2.8.0` introduces support for true iterators for Go 1.23+. Please see [issue #141](https://github.com/deckarep/golang-set/issues/141)
14
+
for further details on the implications of how iterations work between older Go versions vs newer Go versions. Additionally, this
15
+
release has a minor unit-test spelling fix.
16
+
17
+
## Update 12/3/2024
18
+
* Packaged version: `2.7.0` fixes a long-standing bug with *JSON Unmarshaling*. A large refactor in the interest of performance
19
+
introduced this bug and there was no way around it but to revert the code back to how it was previously. The performance
20
+
difference was likely negligible to begin with. JSON Marshaling and Unmarshaling is now properly supported again without
21
+
needing to do workarounds.
22
+
12
23
## Update 3/5/2023
13
24
* 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`.
0 commit comments