@wordpress/date 5.0.1 → 5.2.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -4
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 5.2.0 (2024-06-26)
6
+
7
+ ## 5.1.0 (2024-06-15)
8
+
5
9
  ## 5.0.0 (2024-05-31)
6
10
 
7
11
  ### Breaking Changes
@@ -92,7 +96,7 @@
92
96
 
93
97
  ## 4.17.0 (2022-09-13)
94
98
 
95
- ## Deprecations
99
+ ### Deprecations
96
100
 
97
101
  - `__experimentalGetSettings` has been renamed to `getSettings`.
98
102
 
@@ -137,7 +141,7 @@
137
141
 
138
142
  ## 3.15.0 (2021-04-06)
139
143
 
140
- ### New Feature
144
+ ### New Features
141
145
 
142
146
  - Bundle type definitions.
143
147
 
@@ -162,7 +166,7 @@
162
166
 
163
167
  ## 2.1.0 (2018-10-29)
164
168
 
165
- ### Breaking Change
169
+ ### Breaking Changes
166
170
 
167
171
  - Marked getSettings as experimental
168
172
 
@@ -174,6 +178,6 @@
174
178
 
175
179
  ## 2.0.0 (2018-09-05)
176
180
 
177
- ### Breaking Change
181
+ ### Breaking Changes
178
182
 
179
183
  - Change how required built-ins are polyfilled with Babel 7 ([#9171](https://github.com/WordPress/gutenberg/pull/9171)). If you're using an environment that has limited or no support for ES2015+ such as lower versions of IE then using [core-js](https://github.com/zloirock/core-js) or [@babel/polyfill](https://babeljs.io/docs/en/next/babel-polyfill) will add support for these methods.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/date",
3
- "version": "5.0.1",
3
+ "version": "5.2.0",
4
4
  "description": "Date module for WordPress.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -28,12 +28,12 @@
28
28
  "types": "build-types",
29
29
  "dependencies": {
30
30
  "@babel/runtime": "^7.16.0",
31
- "@wordpress/deprecated": "^4.0.1",
31
+ "@wordpress/deprecated": "^4.2.0",
32
32
  "moment": "^2.29.4",
33
33
  "moment-timezone": "^0.5.40"
34
34
  },
35
35
  "publishConfig": {
36
36
  "access": "public"
37
37
  },
38
- "gitHead": "0e973525f7787401b5a544e0727774d52a78639f"
38
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
39
39
  }