Skip to content

Commit

Permalink
bump to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
icambron committed Jul 9, 2022
1 parent 5fdcfc8 commit 857812f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# 3.0.0 (2022-07-09)

* Add "default" as an option for specifying a zone, and change "system" to really mean the system zone (breaking change)

# 2.5.0 (2022-07-09)

* Support for ESM-style node imports
Expand Down
1 change: 1 addition & 0 deletions docs/zones.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ Luxon's API methods that take a zone as an argument all let you specify the zone
| ------------ | ------------------ | ----------------------------------------------------------------- |
| IANA | 'America/New_York' | that zone |
| system | 'system' | the system's local zone |
| default | 'default' | the default zone set by Settings.defaultZone |
| UTC | 'utc' | Universal Coordinated Time |
| fixed offset | 'UTC+7' | a fixed offset zone |
| Zone | new YourZone() | A custom implementation of Luxon's Zone interface (advanced only) |
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "luxon",
"version": "2.5.0",
"version": "3.0.0",
"description": "Immutable date wrapper",
"author": "Isaac Cambron",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/luxon.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import InvalidZone from "./zones/invalidZone.js";
import SystemZone from "./zones/systemZone.js";
import Settings from "./settings.js";

const VERSION = "2.5.0";
const VERSION = "3.0.0";

export {
VERSION,
Expand Down

0 comments on commit 857812f

Please sign in to comment.