zx-bulk-release 2.4.0 → 2.4.2

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
@@ -1,3 +1,13 @@
1
+ ## [2.4.2](https://github.com/semrel-extra/zx-bulk-release/compare/v2.4.1...v2.4.2) (2023-04-09)
2
+
3
+ ### Fixes & improvements
4
+ * fix: make safe `git config unset` ([562083d](https://github.com/semrel-extra/zx-bulk-release/commit/562083d14ede6db93e0e19853aa8baf3a1e0f578))
5
+
6
+ ## [2.4.1](https://github.com/semrel-extra/zx-bulk-release/compare/v2.4.0...v2.4.1) (2023-04-09)
7
+
8
+ ### Fixes & improvements
9
+ * fix: revert pkg.json state after publishing asap ([7e28b3e](https://github.com/semrel-extra/zx-bulk-release/commit/7e28b3eb3f0685bbe2133a6a0a1103ff19edca18))
10
+
1
11
  ## [2.4.0](https://github.com/semrel-extra/zx-bulk-release/compare/v2.3.3...v2.4.0) (2023-04-09)
2
12
 
3
13
  ### Features
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "zx-bulk-release",
3
3
  "alias": "bulk-release",
4
- "version": "2.4.0",
4
+ "version": "2.4.2",
5
5
  "description": "zx-based alternative for multi-semantic-release",
6
6
  "type": "module",
7
7
  "exports": {
@@ -113,6 +113,6 @@ export const setUserConfig = memoizeBy(async(cwd, gitCommitterName, gitCommitter
113
113
  git config user.email ${gitCommitterEmail}
114
114
  `)
115
115
 
116
- export const unsetUserConfig = async(cwd) => $.o({cwd})`
116
+ export const unsetUserConfig = async(cwd) => $.o({cwd, nothrow: true})`
117
117
  git config --unset user.name &&
118
118
  git config --unset user.email`