Skip to content

Commit 1bee290

Browse files
committed
v0.10.1
1 parent dee584f commit 1bee290

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

Changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
v0.10.1 on 2021-12-12
2+
---------------------
3+
4+
- Fix it_IT shortMonths locale
5+
Thanks to [Douglas de Espindola](https://github.com/douglasep)
6+
7+
- Try to get a short time zone name for %Z, falling back to the long one. This attempts to work around a change to Date.toString in v8 (node v10+, Chrome 66+). Unfortunately sometimes Date.toLocaleString returns a time zone like GMT+2 and we fall back to the long name in that case.
8+
19
v0.10.0 on 2016-12-28
210
---------------------
311

Readme.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ strftime
33

44
strftime for JavaScript. Works in (at least) node.js and browsers. Supports localization and timezones. Most standard specifiers from C are supported as well as some other extensions from Ruby.
55

6-
[![version 0.10.0 on npm](https://img.shields.io/badge/npm-0.10.0-brightgreen.svg?style=flat)](https://www.npmjs.com/package/strftime) [![node version 0.2 and up](https://img.shields.io/badge/node->=0.2-brightgreen.svg?style=flat)](https://nodejs.org) [![MIT License](https://img.shields.io/badge/License-MIT-blue.svg?style=flat)](https://sjs.mit-license.org)
6+
[![version 0.10.1 on npm](https://img.shields.io/badge/npm-0.10.0-brightgreen.svg?style=flat)](https://www.npmjs.com/package/strftime) [![node version 0.2 and up](https://img.shields.io/badge/node->=0.2-brightgreen.svg?style=flat)](https://nodejs.org) [![MIT License](https://img.shields.io/badge/License-MIT-blue.svg?style=flat)](https://sjs.mit-license.org)
77

88
Installation
99
============
@@ -181,6 +181,7 @@ Contributors
181181
* [Andrew Schaaf](https://github.com/andrewschaaf)
182182
* [Ayman Nedjmeddine](https://github.com/IOAyman)
183183
* [Cory Heslip](https://github.com/cheslip)
184+
* [Douglas de Espindola](https://github.com/douglasep)
184185
* [Forbes Lindesay](https://github.com/ForbesLindesay)
185186
* [John Zwinck](https://github.com/jzwinck)
186187
* [Joost Hietbrink](https://github.com/joost)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "strftime",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"main": "strftime.js",
55
"ignore": [
66
"Readme.md",

component.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"repo": "samsonjs/strftime",
44
"description": "strftime date formatting",
55
"keywords": ["strftime", "format", "date", "time"],
6-
"version": "0.10.0",
6+
"version": "0.10.1",
77
"main": "strftime.js",
88
"scripts": ["strftime.js"]
99
}

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "strftime",
33
"description": "strftime for JavaScript",
4-
"version": "0.10.0",
4+
"version": "0.10.1",
55
"homepage": "https://samhuri.net/projects/strftime",
66
"author": "Sami Samhuri <[email protected]>",
77
"contributors": [
@@ -10,6 +10,7 @@
1010
"Andrew Schaaf <[email protected]> (https://github.com/andrewschaaf)",
1111
"Ayman Nedjmeddine (https://github.com/IOAyman)",
1212
"Cory Heslip (https://github.com/cheslip)",
13+
"Douglas de Espindola (https://github.com/douglasep)",
1314
"Forbes Lindesay (https://github.com/ForbesLindesay)",
1415
"John Zwinck (https://github.com/jzwinck)",
1516
"Joost Hietbrink (https://github.com/joost)",

0 commit comments

Comments
 (0)