Skip to content

Commit c8f7191

Browse files
committed
bump to 3.2.0
1 parent f9917c4 commit c8f7191

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

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

3+
# 3.2.0 (2022-12-29)
4+
5+
* Allow timeZone to be specified as an intl option
6+
* Fix for diff's handling of end-of-month when crossing leap years (#1340)
7+
* Add Interval.toLocaleString() (#1320)
8+
39
# 3.1.1 (2022-11-28)
410

511
* Add Settings.twoDigitCutoffYear

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.1.1",
3+
"version": "3.2.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.1.1";
12+
const VERSION = "3.2.0";
1313

1414
export {
1515
VERSION,

0 commit comments

Comments
 (0)