Skip to content

Commit 03896c7

Browse files
committed
Merge branch release-1.0.22 into master.
2 parents 58547fe + f2f0c00 commit 03896c7

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
- Version 1.0.22.
22

3+
Thu Jan 24 08:32:11 UTC 2019
4+
35
* Upgrade IANA TZ Database for `2018i`. #316.
46

57
- Version 1.0.21.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "timezone",
33
"description": "Small, elegant, Olson educated, timezone aware date math and `strftime` date formatting in pure JavaScript with no dependendcies for Node.js and the browser. Timezone uses the Olson/IANA timezone database. Timezone is aware of every clock transition in the Olson database. Timezones supports the full compilment of `strftime` format specifiers defined by GNU `date`. Timezone can perform date math and adjust for daylight savings time. Timezone works in the browser too where it is less than 3K minified and gzipped.",
4-
"version": "1.0.21",
4+
"version": "1.0.22",
55
"author": "Alan Gutierrez <alan@prettyrobots.com>",
66
"keywords": [ "time", "timezone", "date", "clock", "wall-clock",
77
"tzdata", "utc", "gmt", "datetime", "tz", "format",

src/timezone.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@
109109
}
110110

111111
function convert (vargs) {
112-
if (!vargs.length) return "1.0.21";
112+
if (!vargs.length) return "1.0.22";
113113

114114
var request = Object.create(this)
115115
, adjustments = []

t/version/get.t.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ require('proof')(1, prove)
22

33
function prove (assert) {
44
var tz = require('timezone'), util = require('../util')
5-
assert(tz(), '1.0.21', 'get')
5+
assert(tz(), '1.0.22', 'get')
66
}

0 commit comments

Comments
 (0)