Skip to content

Tags: barweiss/go-tuple

Tags

v1.1.2

Toggle v1.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Upgrade stretchr/testify dependency to fix security issue in gopkg.in…

…/yaml.v3 (#23)

v1.1.1

Toggle v1.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix JSON unmarshalling in complex structures bug (#22)

* Add documentation in README about JSON marshalling

v1.1.0

Toggle v1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for JSON marshalling (#21)

v1.0.2

Toggle v1.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix use of "contraints" package and update GitHub action

* Update go.yml

* Fix comparison.go use of constraints

v1.0.1

Toggle v1.0.1's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
Documentation fixes

* Fix the documentation of some comparison functions
* Add package documentation

v1.0.0

Toggle v1.0.0's commit message

Unverified

This tag is not signed, but one or more authors requires that any tag attributed to them is signed.
The first release of `go-tuple`.

`go-tuple` follows [semantic versioning](https://semver.org/).
This means:

* Incompatible API changes that are not backwards compatible will bump the "major" version, and reset the "minor" and "patch" versions.
* New features that are backwards-compatible will bump the "minor" version and reset the "patch" version.
* Bug fixes that are backwards-compatible will bump the "patch" version.

Supported features:
* Tuples can contain values of different types.
* Support tuples with a varying number of values, from 1 to 9.
* Tuples can be constructed with the `New*` function.
* Tuples implement the `Stringer` and `GoStringer` interfaces.
* Tuples of the same type can be compared and ordered.