diff --git a/Changelog.md b/Changelog.md index 5024ffd..57203f9 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,11 @@ +v0.10.1 on 2021-12-12 +--------------------- + +- Fix it_IT shortMonths locale + Thanks to [Douglas de Espindola](https://github.com/douglasep) + +- 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. + v0.10.0 on 2016-12-28 --------------------- diff --git a/Readme.md b/Readme.md index 0508fae..c1cd507 100644 --- a/Readme.md +++ b/Readme.md @@ -3,7 +3,7 @@ strftime 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. -[![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) +[![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) Installation ============ @@ -181,6 +181,7 @@ Contributors * [Andrew Schaaf](https://github.com/andrewschaaf) * [Ayman Nedjmeddine](https://github.com/IOAyman) * [Cory Heslip](https://github.com/cheslip) +* [Douglas de Espindola](https://github.com/douglasep) * [Forbes Lindesay](https://github.com/ForbesLindesay) * [John Zwinck](https://github.com/jzwinck) * [Joost Hietbrink](https://github.com/joost) diff --git a/bower.json b/bower.json index 5f56460..dd7edc9 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "strftime", - "version": "0.10.0", + "version": "0.10.1", "main": "strftime.js", "ignore": [ "Readme.md", diff --git a/component.json b/component.json index 0f00c70..8a0ba38 100644 --- a/component.json +++ b/component.json @@ -3,7 +3,7 @@ "repo": "samsonjs/strftime", "description": "strftime date formatting", "keywords": ["strftime", "format", "date", "time"], - "version": "0.10.0", + "version": "0.10.1", "main": "strftime.js", "scripts": ["strftime.js"] } diff --git a/package.json b/package.json index 8a61be4..7a54951 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "strftime", "description": "strftime for JavaScript", - "version": "0.10.0", + "version": "0.10.1", "homepage": "https://samhuri.net/projects/strftime", "author": "Sami Samhuri ", "contributors": [ @@ -10,6 +10,7 @@ "Andrew Schaaf (https://github.com/andrewschaaf)", "Ayman Nedjmeddine (https://github.com/IOAyman)", "Cory Heslip (https://github.com/cheslip)", + "Douglas de Espindola (https://github.com/douglasep)", "Forbes Lindesay (https://github.com/ForbesLindesay)", "John Zwinck (https://github.com/jzwinck)", "Joost Hietbrink (https://github.com/joost)",