Releases: ringsaturn/tzf
Releases · ringsaturn/tzf
v0.16.0
- Bump tzf-rel-lite data to 2024b, sync from https://github.com/evansiroky/timezone-boundary-builder/releases/tag/2024b
- Support Go 1.23+
- Bump deps
Full Changelog: v0.15.0...v0.16.0
v0.15.0
Breaking Changes
- No longer support < Go 1.20.
What's Changed
- Update release data to 2024a
- Use tzfrel lite by @ringsaturn in #155
- Speed up build, no longer download full data by default.
Full Changelog: v0.14.3...v0.15.0
v0.14.3
What's Changed
- Bump codecov/codecov-action from 3 to 4 by @dependabot in #150
- Bump arduino/setup-protoc from 2.1.0 to 3.0.0 by @dependabot in #149
- Bump github.com/paulmach/orb from 0.11.0 to 0.11.1 by @dependabot in #148
- Bump golangci/golangci-lint-action from 3 to 4 by @dependabot in #153
- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by @dependabot in #154
Full Changelog: v0.14.2...v0.14.3
v0.14.2
Fix bad tzf-rel sum.
What's Changed
- Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 by @dependabot in #140
- Bump github.com/ringsaturn/go-cities.json from 0.5.1 to 0.5.3 by @dependabot in #141
- Bump github.com/ringsaturn/go-cities.json from 0.5.3 to 0.5.4 by @dependabot in #142
- Bump github.com/paulmach/orb from 0.10.0 to 0.11.0 by @dependabot in #144
- Bump actions/upload-artifact from 4.0.0 to 4.1.0 by @dependabot in #145
- Bump actions/download-artifact from 4.1.0 to 4.1.1 by @dependabot in #143
- Bump actions/upload-artifact from 4.1.0 to 4.2.0 by @dependabot in #146
- Bump actions/upload-artifact from 4.2.0 to 4.3.0 by @dependabot in #147
Full Changelog: v0.14.1...v0.14.2
v0.14.1
What's Changed
- Bump actions/checkout from 3 to 4 by @dependabot in #130
- Bump actions/upload-artifact from 3.1.2 to 3.1.3 by @dependabot in #131
- Bump arduino/setup-protoc from 2.0.0 to 2.1.0 by @dependabot in #132
- Bump github.com/ringsaturn/go-cities.json from 0.4.0 to 0.5.0 by @dependabot in #133
- Bump github.com/ringsaturn/go-cities.json from 0.5.0 to 0.5.1 by @dependabot in #134
- Bump actions/setup-go from 4 to 5 by @dependabot in #135
- Bump actions/download-artifact from 3.0.2 to 4.0.0 by @dependabot in #137
- Bump actions/upload-artifact from 3.1.3 to 4.0.0 by @dependabot in #136
- Bump github.com/tidwall/geojson from 1.4.3 to 1.4.5 by @dependabot in #139
- Bump actions/download-artifact from 4.0.0 to 4.1.0 by @dependabot in #138
- Bump tzf-rel to 2023d
Full Changelog: v0.14.0...v0.14.1
v0.14.0
What's Changed
- Check upstream data release by @ringsaturn in #114
- Bump github.com/ringsaturn/go-cities.json from 0.3.5 to 0.3.6 by @dependabot in #115
- Fix grammar and wording in README by @Clarmy in #116
- Bump github.com/paulmach/orb from 0.9.0 to 0.9.1 by @dependabot in #117
- Bump github.com/ringsaturn/go-cities.json from 0.3.6 to 0.3.7 by @dependabot in #118
- Bump github.com/paulmach/orb from 0.9.1 to 0.9.2 by @dependabot in #119
- Bump arduino/setup-protoc from 1.1.2 to 1.2.0 by @dependabot in #120
- Bump arduino/setup-protoc from 1.2.0 to 1.3.0 by @dependabot in #121
- Bump arduino/setup-protoc from 1.3.0 to 2.0.0 by @dependabot in #122
- Bump github.com/ringsaturn/go-cities.json from 0.3.7 to 0.3.8 by @dependabot in #123
- Bump github.com/ringsaturn/go-cities.json from 0.3.8 to 0.3.9 by @dependabot in #124
- Bump github.com/ringsaturn/polyf from 0.0.0-20221203140730-bfa046f8af27 to 0.1.0 by @dependabot in #127
- Bump github.com/paulmach/orb from 0.9.2 to 0.10.0 by @dependabot in #126
- Bump google.golang.org/protobuf from 1.30.0 to 1.31.0 by @dependabot in #125
- Bump github.com/ringsaturn/go-cities.json from 0.3.9 to 0.4.0 by @dependabot in #128
- Bump Go version to 1.21 by @ringsaturn in #129
New Contributors
Full Changelog: v0.13.0...v0.14.0
v0.13.1-rc2
Full Changelog: v0.13.1-rc1...v0.13.1-rc2
v0.13.1-rc1
What's Changed
- Check upstream data release by @ringsaturn in #114
Full Changelog: v0.13.0...v0.13.1-rc1
v0.13.0
What's Changed
- remove deprecated by @ringsaturn in #111
- Add version info to pb rel by @ringsaturn in #110
- bump tzf-rel to v0.0.2023-b by @ringsaturn in #112
Full Changelog: v0.12.0...v0.13.0
v0.12.0
It’s breaking change for v1.0.0 stable release.
Package tzf will no longer return *tzf.Finder
/*tzf.DefaultFinder
/*tzf.FuzzyFinder
in tzf.New**
method but return an interface tzf.F
instead.
var (
defaultFinder tzf.F
)
func init() {
finder, err := tzf.NewDefaultFinder()
if err != nil {
panic(err)
}
defaultFinder = finder
}
Thie behaviour should be considered as a preparation for v1.0.0 stable release, which won't change until v2.0.0 release.
What's Changed
- feat!: return interface instead of structs by @ringsaturn in #109
Full Changelog: v0.11.2...v0.12.0