@capacitor/action-sheet 1.0.4 → 1.0.5

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 +11 -0
  2. package/package.json +2 -3
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.5](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/action-sheet@1.0.4...@capacitor/action-sheet@1.0.5) (2021-10-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * remove postpublish scripts ([#656](https://github.com/ionic-team/capacitor-plugins/issues/656)) ([ed6ac49](https://github.com/ionic-team/capacitor-plugins/commit/ed6ac499ebf4a47525071ccbfc36c27503e11f60))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [1.0.4](https://github.com/ionic-team/capacitor-plugins/compare/@capacitor/action-sheet@1.0.3...@capacitor/action-sheet@1.0.4) (2021-10-13)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@capacitor/action-sheet",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "The Action Sheet API provides access to native Action Sheets, which come up from the bottom of the screen and display actions a user can take.",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",
@@ -42,7 +42,6 @@
42
42
  "clean": "rimraf ./dist",
43
43
  "watch": "tsc --watch",
44
44
  "prepublishOnly": "npm run build",
45
- "postpublish": "npm run publish:cocoapod",
46
45
  "publish:cocoapod": "pod trunk push ./CapacitorActionSheet.podspec --allow-warnings"
47
46
  },
48
47
  "devDependencies": {
@@ -80,5 +79,5 @@
80
79
  "publishConfig": {
81
80
  "access": "public"
82
81
  },
83
- "gitHead": "b0361a0441fc5072018b0b4830dc53180e0f573a"
82
+ "gitHead": "eadbffd4bf9f0859bd301a639ab4e0c3337ea8db"
84
83
  }