@williamthorsen/toolbelt.datetime 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +1 -9
- package/package.json +13 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## 4.0.1 — 2026-08-13
|
|
6
|
+
|
|
7
|
+
### Tooling
|
|
8
|
+
|
|
9
|
+
- Remove redundant .gitignore files
|
|
10
|
+
- Populate manifest metadata and adopt a pnpm catalog (#140)
|
|
11
|
+
|
|
12
|
+
Adopts a pnpm catalog to avoid specifying the version of a common dependency in multiple places. Separately, fixes violations of newly activated `package-json` lint rules. Missing values have been added to `package.json` fields across the repo, and package descriptions are improved.
|
|
13
|
+
|
|
5
14
|
## 4.0.0 — 2026-08-12
|
|
6
15
|
|
|
7
16
|
### Features
|
package/README.md
CHANGED
|
@@ -2,15 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Date and time utilities.
|
|
4
4
|
|
|
5
|
-
<!-- section:release-notes -->
|
|
6
|
-
## Release notes — v4.0.0 (2026-08-12)
|
|
7
|
-
|
|
8
|
-
### Features
|
|
9
|
-
|
|
10
|
-
- 🚨 **Breaking:** Rename get* functions by return kind and verb specificity (#119)
|
|
11
|
-
|
|
12
|
-
Renames thirteen functions across various packages to align with a consistent naming pattern.
|
|
13
|
-
<!-- /section:release-notes -->
|
|
5
|
+
<!-- section:release-notes --><!-- /section:release-notes -->
|
|
14
6
|
|
|
15
7
|
## Installation
|
|
16
8
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@williamthorsen/toolbelt.datetime",
|
|
3
|
-
"version": "4.0.
|
|
4
|
-
"description": "
|
|
5
|
-
"keywords": [
|
|
3
|
+
"version": "4.0.1",
|
|
4
|
+
"description": "Date and time utilities",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"date",
|
|
7
|
+
"datetime",
|
|
8
|
+
"duration",
|
|
9
|
+
"esm",
|
|
10
|
+
"timer",
|
|
11
|
+
"toolbelt",
|
|
12
|
+
"typescript",
|
|
13
|
+
"utilities"
|
|
14
|
+
],
|
|
6
15
|
"homepage": "https://github.com/williamthorsen/toolbelt/tree/main/packages/datetime#readme",
|
|
7
16
|
"bugs": {
|
|
8
17
|
"url": "https://github.com/williamthorsen/toolbelt/issues"
|
|
@@ -14,6 +23,7 @@
|
|
|
14
23
|
},
|
|
15
24
|
"license": "ISC",
|
|
16
25
|
"author": "William Thorsen <william@thorsen.dev> (https://github.com/williamthorsen)",
|
|
26
|
+
"sideEffects": false,
|
|
17
27
|
"type": "module",
|
|
18
28
|
"exports": {
|
|
19
29
|
".": {
|