Skip to content

v3.3.0

Compare
Choose a tag to compare
@quentinvernot quentinvernot released this 12 Jul 10:15
· 29 commits to master since this release
ca7ae05

Released on 2022-07-12

  • Have more idiomatic Go code:
    • Add internal package to hide parts of the API that should not be public
    • Several architectural changes
    • Renaming and changes in signatures of internal functions (no changes to public API)
  • Add micro-benchmarks for the exported functions and optimize things a little (see #e6795ff, #8ee200a, and #2a0536c)
  • Add godoc comments to the code for better readability
  • Upgrade the Go version of the module (1.12 -> 1.17)

This version is fully retro-compatible with the previous one, however the package github.com/TankerHQ/identity-go/identity has been deprecated, please use github.com/TankerHQ/identity-go instead:

package my_package

import (
-   "github.com/TankerHQ/identity-go/v3/identity"
+   "github.com/TankerHQ/identity-go/v3"
)