release-please 13.3.0 → 13.3.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
@@ -4,6 +4,13 @@
4
4
 
5
5
  [1]: https://www.npmjs.com/package/release-please?activeTab=versions
6
6
 
7
+ ### [13.3.1](https://github.com/googleapis/release-please/compare/v13.3.0...v13.3.1) (2022-01-12)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * pass target_commitish instead of sha ([#1219](https://github.com/googleapis/release-please/issues/1219)) ([3f26ec3](https://github.com/googleapis/release-please/commit/3f26ec3de527497d7180f2cd987983c6ae6e44cd))
13
+
7
14
  ## [13.3.0](https://github.com/googleapis/release-please/compare/v13.2.1...v13.3.0) (2022-01-12)
8
15
 
9
16
 
@@ -304,9 +304,9 @@ class GitHub {
304
304
  repo: this.repository.repo,
305
305
  tag_name: release.tag.toString(),
306
306
  body: release.notes,
307
- sha: release.sha,
308
307
  draft: !!options.draft,
309
308
  prerelease: !!options.prerelease,
309
+ target_commitish: release.sha,
310
310
  });
311
311
  return {
312
312
  name: resp.data.name || undefined,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-please",
3
- "version": "13.3.0",
3
+ "version": "13.3.1",
4
4
  "description": "generate release PRs based on the conventionalcommits.org spec",
5
5
  "main": "./build/src/index.js",
6
6
  "bin": "./build/src/bin/release-please.js",