mirror of
https://github.com/samsonjs/strftime.git
synced 2026-03-25 09:05:48 +00:00
Add changelog and bump versions to 0.10.3 (#90)
This commit is contained in:
parent
8a335897ae
commit
e61895af6c
6 changed files with 14 additions and 6 deletions
|
|
@ -1,4 +1,12 @@
|
|||
v0.10.3 on 2024-05-28
|
||||
---------------------
|
||||
|
||||
- Stop using `let` to avoid breaking backwards compatibility with ES5. Thanks to [Maximilian Herold](https://github.com/mherold) for the report #87
|
||||
|
||||
- Drop '份' suffix from Chinese month names. Thanks to @mogando668 for the report #88
|
||||
|
||||
v0.10.2 on 2023-05-24
|
||||
---------------------
|
||||
|
||||
- Fix test case for %c in current versions of node.js
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
||||
[](https://www.npmjs.com/package/strftime) [](https://nodejs.org) [](https://sjs.mit-license.org)
|
||||
[](https://www.npmjs.com/package/strftime) [](https://nodejs.org) [](https://sjs.mit-license.org)
|
||||
|
||||
Installation
|
||||
============
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "strftime",
|
||||
"version": "0.10.2",
|
||||
"version": "0.10.3",
|
||||
"main": "strftime.js",
|
||||
"ignore": [
|
||||
"Readme.md",
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
"date",
|
||||
"time"
|
||||
],
|
||||
"version": "0.10.2",
|
||||
"version": "0.10.3",
|
||||
"main": "strftime.js",
|
||||
"scripts": [
|
||||
"strftime.js"
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "strftime",
|
||||
"version": "0.10.2",
|
||||
"version": "0.10.3",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "strftime",
|
||||
"version": "0.10.2",
|
||||
"version": "0.10.3",
|
||||
"license": "MIT",
|
||||
"devDependencies": {},
|
||||
"engines": {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "strftime",
|
||||
"description": "strftime for JavaScript",
|
||||
"version": "0.10.2",
|
||||
"version": "0.10.3",
|
||||
"homepage": "https://samhuri.net/projects/strftime",
|
||||
"author": "Sami Samhuri <sami@samhuri.net>",
|
||||
"contributors": [
|
||||
|
|
|
|||
Loading…
Reference in a new issue