Skip to content

Commit 682d986

Browse files
committed
chore: Publish 2.1.1 after wrong publishing of 2.1.0
1 parent b583ecf commit 682d986

4 files changed

Lines changed: 5 additions & 46 deletions

File tree

.coveralls.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.travis.yml

Lines changed: 0 additions & 19 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,14 @@
11
# Time Zone Support
2+
23
[![NPM version](https://badge.fury.io/js/timezone-support.png)](http://badge.fury.io/js/timezone-support)
3-
[![Build Status](https://travis-ci.org/prantlf/timezone-support.png)](https://travis-ci.org/prantlf/timezone-support)
4-
[![Coverage Status](https://coveralls.io/repos/github/prantlf/timezone-support/badge.svg?branch=master)](https://coveralls.io/github/prantlf/timezone-support?branch=master)
54
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/9f1034029c0747a980cd49f64f16338b)](https://www.codacy.com/app/prantlf/timezone-support?utm_source=github.com&utm_medium=referral&utm_content=prantlf/timezone-support&utm_campaign=Badge_Grade)
6-
[![Dependency Status](https://david-dm.org/prantlf/timezone-support.svg)](https://david-dm.org/prantlf/timezone-support)
7-
[![devDependency Status](https://david-dm.org/prantlf/timezone-support/dev-status.svg)](https://david-dm.org/prantlf/timezone-support#info=devDependencies)
8-
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
9-
10-
[![NPM Downloads](https://nodei.co/npm/timezone-support.png?downloads=true&stars=true)](https://www.npmjs.com/package/timezone-support)
115

126
Lightweight time zone listing and date converting. Intended for adding time zone support to high-level date libraries, but also for direct application usage.
137

148
* Tiny code base - 4.6 KB minified, 1.7 KB gzipped. Do not pack unnecessary weight in your application.
159
* Packed time zone data - 924 KB minified, 33.6 KB gzipped. Single time zones are unpacked on demand.
1610
* Smaller bundles of code with limited data - 1900-2050 (206 kB minified, 25.4 kB gzipped), 1970-2038 (141 kB minified, 15.8 kB gzipped) and 2012-2022 (31.3 KB minified, 8.25 kB gzipped).
17-
* Generated from the official time zone database version 2019a. Canonical time zone names, aliases, UTC offsets, and daylight-saving time changes.
11+
* Generated from the official time zone database version 2022f. Canonical time zone names, aliases, UTC offsets, and daylight-saving time changes.
1812
* Minimal interface for time zone lookup and conversions. Parsing, formatting and manipulating dates is usually the task for a higher-level date library.
1913

2014
**Attention**: exported identifiers in vanilla browser modules changed in the version 2.0.0. See the [migration guide] for more information.
@@ -85,25 +79,9 @@ You can see [complete sample applications] too, which can help you start with in
8579

8680
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
8781

88-
## Release History
89-
90-
* 2018-06-11 v2.0.2 Upgrade the time zone database to the version 2019a.
91-
* 2018-06-11 v2.0.1 Default to midnight, if the time part of a date is missing.
92-
* 2018-06-10 v2.0.0 Use proper identifiers in vanilla browser modules.
93-
* 2018-11-17 v1.8.0 Include time zone data for years 1970-2038.
94-
* 2018-11-17 v1.7.0 Include full time zone data separately loadable.
95-
* 2018-11-06 v1.6.0 Upgrade the time zone database to the version 2018g.
96-
* 2018-10-08 v1.5.5 Fix compatibility with IE. Thanks, [Andrii](https://github.com/AndriiDidkivsky)!
97-
* 2018-10-06 v1.5.0 Add TypeScript export declarations.
98-
* 2018-09-30 v1.4.0 Add limited data for just the current decade - years 2012-2022.
99-
* 2018-09-18 v1.3.0 Maintain the property dayOfWeek in the time object.
100-
* 2018-09-16 v1.2.0 Add a new getUTCOffset method for more lightweight integrations.
101-
* 2018-09-03 v1.1.0 Set the property epoch to the time object.
102-
* 2018-09-02 v1.0.0 Initial release
103-
10482
## License
10583

106-
Copyright (c) 2018-2019 Ferdinand Prantl
84+
Copyright (c) 2018-2022 Ferdinand Prantl
10785

10886
Licensed under the MIT license.
10987

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"name": "timezone-support",
3-
"version": "0.0.0-development",
3+
"version": "2.0.2",
44
"description": "Lightweight time zone support for your applications or other date libraries.",
55
"author": {
66
"name": "Ferdinand Prantl",
77
"email": "[email protected]",
88
"url": "http://prantl.tk"
99
},
1010
"contributors": [
11+
"Aaron Ross <[email protected]>",
1112
"Andrii Didkivsky <[email protected]>",
1213
"Jason Yu <[email protected]>",
1314
"Luci Furtun <[email protected]>",

0 commit comments

Comments
 (0)