@wordpress/keyboard-shortcuts 3.1.0 → 3.1.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 CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 3.1.1 (2022-02-10)
6
+
7
+ ### Bug Fix
8
+
9
+ - Removed unused `@wordpress/compose` dependency ([#38388](https://github.com/WordPress/gutenberg/pull/38388)).
10
+
5
11
  ## 3.1.0 (2022-01-27)
6
12
 
7
13
  ## 3.0.0 (2021-07-29)
package/README.md CHANGED
@@ -53,4 +53,10 @@ _Parameters_
53
53
 
54
54
  <!-- END TOKEN(Autogenerated API docs) -->
55
55
 
56
- <br/><br/><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
56
+ ## Contributing to this package
57
+
58
+ This is an individual package that's part of the Gutenberg project. The project is organized as a monorepo. It's made up of multiple self-contained software packages, each with a specific purpose. The packages in this monorepo are published to [npm](https://www.npmjs.com/) and used by [WordPress](https://make.wordpress.org/core/) as well as other software projects.
59
+
60
+ To find out more about contributing to this package or Gutenberg as a whole, please read the project's main [contributor guide](https://github.com/WordPress/gutenberg/tree/HEAD/CONTRIBUTING.md).
61
+
62
+ <br /><br /><p align="center"><img src="https://s.w.org/style/images/codeispoetry.png?1" alt="Code is Poetry." /></p>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordpress/keyboard-shortcuts",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "Handling keyboard shortcuts.",
5
5
  "author": "The WordPress Contributors",
6
6
  "license": "GPL-2.0-or-later",
@@ -26,15 +26,14 @@
26
26
  "react-native": "src/index",
27
27
  "dependencies": {
28
28
  "@babel/runtime": "^7.16.0",
29
- "@wordpress/compose": "^5.1.0",
30
- "@wordpress/data": "^6.2.0",
31
- "@wordpress/element": "^4.1.0",
32
- "@wordpress/keycodes": "^3.3.0",
29
+ "@wordpress/data": "^6.2.1",
30
+ "@wordpress/element": "^4.1.1",
31
+ "@wordpress/keycodes": "^3.3.1",
33
32
  "lodash": "^4.17.21",
34
33
  "rememo": "^3.0.0"
35
34
  },
36
35
  "publishConfig": {
37
36
  "access": "public"
38
37
  },
39
- "gitHead": "d95ccb9366e249133cdb1d7b25c382446b9ee502"
38
+ "gitHead": "2e4922861e49f5a090f9dc52056165092cfba163"
40
39
  }