From 0c5f270c81b798d16b4dc690bbfc0c22fcfa37ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20Nihlg=C3=A5rd?= Date: Fri, 15 Feb 2019 10:09:35 +0100 Subject: [PATCH] Version 0.5.0 --- CHANGELOG.md | 2 +- README.md | 2 +- timezones.nimble | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c4c63b..6333260 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -Version 0.5.0 (???) +Version 0.5.0 (2019-02-15) ============= This release is a nearly complete rewrite of the library. No attempt at backwards compatibility has been made, but the API should now be stable moving forwards. diff --git a/README.md b/README.md index 4753911..9acbb52 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ doAssert bangkok.countries == @["TH", "KH", "LA", "VN"] ## API - [Generated docs for timezones module](https://gulpf.github.io/timezones/timezones.html). -- [Generated docs for posixtimezones module](https://gulpf.github.io/timezones/posixtimezones.html). +- [Generated docs for times/posixtimezones module](https://gulpf.github.io/timezones/posixtimezones.html). ## Advanced usage The timezone definitions from a [IANA timezone database](https://en.wikipedia.org/wiki/Tz_database) release are stored in a JSON file. This repo includes the currently latest release, but no guarantee is given as to how fast the bundled timezone database is updated when IANA releases a new version. The JSON file can either be embeeded into the executable (which is the default behavior), or be loaded at runtime. diff --git a/timezones.nimble b/timezones.nimble index 25a479c..18d6f1e 100644 --- a/timezones.nimble +++ b/timezones.nimble @@ -1,6 +1,6 @@ import timezones / private / tzversion -version = "0.4.3" +version = "0.5.0" author = "Oscar NihlgÄrd" description = "Timezone library compatible with the standard library" license = "MIT" @@ -8,7 +8,7 @@ license = "MIT" bin = @["timezones/fetchjsontimezones"] installDirs = @["timezones"] installFiles = @[Version & ".json", "timezones.nim"] -requires "nim >= 0.19.4" +requires "nim >= 0.19.9" # Tasks