Skip to content

Commit cfa58a2

Browse files
committed
Release version 3.7.0
1 parent 7d379cc commit cfa58a2

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
# 3.7.0 (2025-07-09)
4+
- Added `showZeros` option to `Duration#toHuman`
5+
- Added `Duration#removeZeros` method.
6+
- Added `rounding` option to `DateTime#toRelative`
7+
- Added `precision` option to ISO formatting methods
8+
- Added `signMode` option to `Duration#toFormat`
9+
- Allow escaping single quotes in format strings
10+
- Improve output of `Info.months` and `Info.monthsFormat` for `ja` locale
11+
- Accept lowercase `t` as a separator in ISO strings
12+
- Accept lowercase `z` as an offset in ISO strings
13+
- Reject non-finite numbers where previously only `NaN` was rejected
14+
- Improve the documentation for Interval
15+
- Added a dark theme for the documentation site
16+
317
# 3.6.1 (2025-03-31)
418
- Add Fallback for `minimalDays` being removed from Intl.WeekInfo
519
- Fix various caches when JS keywords like "constructor" are used for names

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "luxon",
3-
"version": "3.6.1",
3+
"version": "3.7.0",
44
"description": "Immutable date wrapper",
55
"author": "Isaac Cambron",
66
"keywords": [

src/luxon.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import InvalidZone from "./zones/invalidZone.js";
99
import SystemZone from "./zones/systemZone.js";
1010
import Settings from "./settings.js";
1111

12-
const VERSION = "3.6.1";
12+
const VERSION = "3.7.0";
1313

1414
export {
1515
VERSION,

src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"type": "module",
3-
"version": "3.6.1"
3+
"version": "3.7.0"
44
}

0 commit comments

Comments
 (0)