@wordpress/autop 4.1.0 → 4.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 -6
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 4.2.0 (2024-06-26)
6
+
5
7
  ## 4.1.0 (2024-06-15)
6
8
 
7
9
  ### Internal
@@ -141,31 +143,31 @@
141
143
 
142
144
  ## 2.7.0 (2020-04-15)
143
145
 
144
- ### New feature
146
+ ### New Features
145
147
 
146
148
  - Include TypeScript type declarations ([#20669](https://github.com/WordPress/gutenberg/pull/20669))
147
149
 
148
150
  ## 2.3.0 (2019-05-21)
149
151
 
150
- ### Bug Fix
152
+ ### Bug Fixes
151
153
 
152
154
  - `removep` will correctly preserve multi-line paragraph tags where attributes are present.
153
155
 
154
156
  ## 2.1.0 (2019-03-06)
155
157
 
156
- ### Bug Fix
158
+ ### Bug Fixes
157
159
 
158
160
  - `autop` correctly matches whitespace preceding and following block-level elements.
159
161
 
160
162
  ## 2.0.0 (2018-09-05)
161
163
 
162
- ### Breaking Change
164
+ ### Breaking Changes
163
165
 
164
166
  - 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.
165
167
 
166
168
  ## 1.1.0 (2018-07-12)
167
169
 
168
- ### New Feature
170
+ ### New Features
169
171
 
170
172
  - Updated build to work with Babel 7 ([#7832](https://github.com/WordPress/gutenberg/pull/7832))
171
173
 
@@ -175,6 +177,6 @@
175
177
 
176
178
  ## 1.0.6 (2018-05-08)
177
179
 
178
- ### Polish
180
+ ### Internal
179
181
 
180
182
  - Documentation: Fix API method typo for `removep`. ([#120](https://github.com/WordPress/packages/pull/120))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/autop",
3
- "version": "4.1.0",
3
+ "version": "4.2.0",
4
4
  "description": "WordPress's automatic paragraph functions `autop` and `removep`.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -33,5 +33,5 @@
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "66d3bf12e67d16deddc4b4a9ec42e1d0bed3479a"
36
+ "gitHead": "aa5b14bb5bdbb8d8a02914e154c3bc1c2f18ace6"
37
37
  }