Skip to content

Commit

Permalink
Bump version to 0.5.44
Browse files Browse the repository at this point in the history
  • Loading branch information
gilmoreorless committed Dec 29, 2023
1 parent 585fabf commit 4734cb2
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### `0.5.44` _2023-12-29_
* Updated data to IANA TZDB `2023d`.
* Fixed `.valueOf()` to return `NaN` for invalid zoned objects (matching default `moment`) [#1082](https://github.com/moment/moment-timezone/pull/1082).
* Performance improvements:
* Use binary search when looking up zone information [#720](https://github.com/moment/moment-timezone/pull/720).
* Avoid redundant checks in `tz.guess()`.
* Avoid redundant `getZone()` calls in `.tz()`.

### `0.5.43` _2023-03-31_
* Updated data to IANA TZDB `2023c`

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "moment/moment-timezone",
"description": "Parse and display dates in any timezone",
"version": "0.5.43",
"version": "0.5.44",
"keywords": [
"moment",
"date",
Expand Down
2 changes: 1 addition & 1 deletion moment-timezone-utils.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! moment-timezone-utils.js
//! version : 0.5.43
//! version : 0.5.44
//! Copyright (c) JS Foundation and other contributors
//! license : MIT
//! github.com/moment/moment-timezone
Expand Down
4 changes: 2 additions & 2 deletions moment-timezone.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! moment-timezone.js
//! version : 0.5.43
//! version : 0.5.44
//! Copyright (c) JS Foundation and other contributors
//! license : MIT
//! github.com/moment/moment-timezone
Expand Down Expand Up @@ -29,7 +29,7 @@
// return moment;
// }

var VERSION = "0.5.43",
var VERSION = "0.5.44",
zones = {},
links = {},
countries = {},
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": "moment-timezone",
"version": "0.5.43",
"version": "0.5.44",
"description": "Parse and display moments in any timezone.",
"homepage": "http://momentjs.com/timezone/",
"author": "Tim Wood <washwithcare@gmail.com> (http://timwoodcreates.com/)",
Expand Down

0 comments on commit 4734cb2

Please sign in to comment.