Skip to content

Commit cc60c1d

Browse files
committed
bump to 2.1.0
1 parent 7eca41f commit cc60c1d

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

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

3+
## 2.1.0 (2021-11-07)
4+
5+
* Stop special casing of `Etc/GMT*` zones
6+
* export fromDurationLike
7+
* memoize zone validation
8+
* Support for fractional elements in duration ISO parsing
9+
* Added `uu` and `uuu` tokens for fractional millisecond parsing
10+
311
## 2.0.2 (2021-08-08)
412

513
Fix locale defaulting

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": "2.0.2",
3+
"version": "2.1.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 = "2.0.2";
12+
const VERSION = "2.1.0";
1313

1414
export {
1515
VERSION,

0 commit comments

Comments
 (0)