Skip to content

Commit

Permalink
Release 1.0.6.
Browse files Browse the repository at this point in the history
Closes #274.
  • Loading branch information
flatheadmill committed Jul 13, 2016
1 parent b71ba48 commit 4b80d20
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
@@ -1,5 +1,7 @@
- Version 1.0.6.

Wed Jul 13 16:22:50 UTC 2016

* Upgrade IANA TZ Database to `2016f`. #275.

- Version 1.0.5.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "timezone",
"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.",
"version": "1.0.5",
"version": "1.0.6",
"author": "Alan Gutierrez <alan@prettyrobots.com>",
"keywords": [ "time", "timezone", "date", "clock", "wall-clock",
"tzdata", "utc", "gmt", "datetime", "tz", "format",
Expand Down
2 changes: 1 addition & 1 deletion src/timezone.js
Expand Up @@ -109,7 +109,7 @@
}

function convert (vargs) {
if (!vargs.length) return "1.0.5";
if (!vargs.length) return "1.0.6";

var request = Object.create(this)
, adjustments = []
Expand Down
2 changes: 1 addition & 1 deletion t/version/get.t.js
Expand Up @@ -2,5 +2,5 @@ require('proof')(1, prove)

function prove (assert) {
var tz = require('timezone'), util = require('../util')
assert(tz(), '1.0.5', 'get')
assert(tz(), '1.0.6', 'get')
}

0 comments on commit 4b80d20

Please sign in to comment.