Skip to content

Releases: jelmersnoeck/experiment

v3.0.0

Choose a tag to compare

@jelmersnoeck jelmersnoeck released this 08 May 23:17
71de3f7
  • Use generics for observation data
  • Make candidate functions context aware
  • Improved error handling

v2.2.1

Choose a tag to compare

@jelmersnoeck jelmersnoeck released this 20 Dec 12:14

Release with a bug fix for the control value, see #25

v2.2.0

Choose a tag to compare

@jelmersnoeck jelmersnoeck released this 02 Dec 13:00
7696af0

New features

  • Add control value to candidate observation

v1.1.0 release

Choose a tag to compare

@jelmersnoeck jelmersnoeck released this 22 Aug 07:22

v1.1.0 changes

  • Removed testify dependency
  • Removed internal interface dependencies, rely on structs from now on
  • Removed x/net/context dependency

Context

The context interface has been copied into the package for backward
compatibility reasons. In Go 1.7 this has been moved to the standard library,
but this would mean this package isn't available for other Go versions. In the
tests we also use the x/net/context package to test some context behaviour.

Previously, one could inject a nil context and it would be converted to a
proper context.Background(). This is not the case anymore. The user should
always inject a context. If the purpose of the context is still unknown, use
context.TODO().

V1.0.0

Choose a tag to compare

@jelmersnoeck jelmersnoeck released this 08 Aug 18:02
Merge pull request #9 from jelmersnoeck/jelmer/contributing-guidelines

Contributing: add guidelines.