Skip to content

Commit 043f2b9

Browse files
committed
bump to 1.27.0
1 parent 6ae0524 commit 043f2b9

4 files changed

Lines changed: 17 additions & 11 deletions

File tree

CHANGELOG.md

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

3+
# 1.27.0 (2021-05-08)
4+
5+
* Fix GMT zone parsing for older versions of Node
6+
* Support multiple units in `toRelative`
7+
* Various documentation updates
8+
39
## 1.26.0 (2021-02-13)
410

511
* Add fromISOTime, toISOTime and toMillis to Duration (#803)
@@ -11,7 +17,7 @@
1117
## 1.25.0 (2020-08-23)
1218

1319
* fix fromFormat with Intl formats containing non-breaking spaces
14-
* Support higher precisision in ISO milliseconds
20+
* Support higher precision in ISO milliseconds
1521
* Some fixes for 00:30 timezones
1622
* Fix some throwOnInvalid for invalid Intervals
1723
* Various doc fixes

package-lock.json

Lines changed: 8 additions & 8 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": "1.26.0",
3+
"version": "1.27.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 LocalZone from "./zones/localZone.js";
1010
import Settings from "./settings.js";
1111

12-
const VERSION = "1.26.0";
12+
const VERSION = "1.27.0";
1313

1414
export {
1515
VERSION,

0 commit comments

Comments
 (0)