We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cea7b5f commit fb6383dCopy full SHA for fb6383d
CHANGELOG.md
@@ -1,5 +1,10 @@
1
# Changelog
2
3
+# 3.5.0 (2024-08-03)
4
+
5
+- Various performance improvements
6
+- throwOnInvalid causes the constructor to throw if the year is invalid
7
8
# 3.4.4 (2023-11-12)
9
10
- Localized week support (#1454)
package.json
@@ -1,6 +1,6 @@
{
"name": "luxon",
- "version": "3.4.4",
+ "version": "3.5.0",
"description": "Immutable date wrapper",
"author": "Isaac Cambron",
"keywords": [
src/luxon.js
@@ -9,7 +9,7 @@ import InvalidZone from "./zones/invalidZone.js";
import SystemZone from "./zones/systemZone.js";
import Settings from "./settings.js";
11
12
-const VERSION = "3.4.4";
+const VERSION = "3.5.0";
13
14
export {
15
VERSION,
0 commit comments