mirror of
https://github.com/samsonjs/strftime.git
synced 2026-04-27 14:57:37 +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
|
v0.10.2 on 2023-05-24
|
||||||
|
---------------------
|
||||||
|
|
||||||
- Fix test case for %c in current versions of node.js
|
- 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.
|
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
|
Installation
|
||||||
============
|
============
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "strftime",
|
"name": "strftime",
|
||||||
"version": "0.10.2",
|
"version": "0.10.3",
|
||||||
"main": "strftime.js",
|
"main": "strftime.js",
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"Readme.md",
|
"Readme.md",
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
"date",
|
"date",
|
||||||
"time"
|
"time"
|
||||||
],
|
],
|
||||||
"version": "0.10.2",
|
"version": "0.10.3",
|
||||||
"main": "strftime.js",
|
"main": "strftime.js",
|
||||||
"scripts": [
|
"scripts": [
|
||||||
"strftime.js"
|
"strftime.js"
|
||||||
|
|
|
||||||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "strftime",
|
"name": "strftime",
|
||||||
"version": "0.10.2",
|
"version": "0.10.3",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "strftime",
|
"name": "strftime",
|
||||||
"version": "0.10.2",
|
"version": "0.10.3",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"engines": {
|
"engines": {
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "strftime",
|
"name": "strftime",
|
||||||
"description": "strftime for JavaScript",
|
"description": "strftime for JavaScript",
|
||||||
"version": "0.10.2",
|
"version": "0.10.3",
|
||||||
"homepage": "https://samhuri.net/projects/strftime",
|
"homepage": "https://samhuri.net/projects/strftime",
|
||||||
"author": "Sami Samhuri <sami@samhuri.net>",
|
"author": "Sami Samhuri <sami@samhuri.net>",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue