Skip to content

Commit

Permalink
Bump version to v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tulir committed Oct 16, 2023
1 parent 2d5aa88 commit 7afd07d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# v0.2.0 (2023-10-16)

* *(jsontime)* Added helpers for unix microseconds and nanoseconds, as well as
alternative structs that parse JSON strings instead of ints (all precisions).
* *(exzerolog)* Added generic helpers to generate `*zerolog.Array`s out of slices.
* *(exslices)* Added helpers for finding the difference between two slices.
* `Diff` is a generic implementation using maps which works with any
`comparable` types (i.e. types that have the equality operator `==` defined).
* `SortedDiff` is a more efficient implementation which can take any types
(using the help of a `compare` function), but the input must be sorted and
shouldn't have duplicates.

# v0.1.0 (2023-09-16)

Initial release
4 changes: 2 additions & 2 deletions util.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

package util

const Version = "v0.1.0"
const Version = "v0.2.0"

func VersionArray() [3]uint {
return [3]uint{0, 1, 0}
return [3]uint{0, 2, 0}
}

0 comments on commit 7afd07d

Please sign in to comment.