release-please 13.18.0 → 13.18.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 +7 -0
- package/build/src/bin/release-please.js +2 -1
- package/package.json +1 -1
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.18.1](https://github.com/googleapis/release-please/compare/v13.18.0...v13.18.1) (2022-06-08)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Bug Fixes
|
|
11
|
+
|
|
12
|
+
* set default bootstrap path to . ([#1464](https://github.com/googleapis/release-please/issues/1464)) ([c2bfbe5](https://github.com/googleapis/release-please/commit/c2bfbe5affe504f4a5183f79e338f9e7d48a8386)), closes [#1450](https://github.com/googleapis/release-please/issues/1450)
|
|
13
|
+
|
|
7
14
|
## [13.18.0](https://github.com/googleapis/release-please/compare/v13.17.1...v13.18.0) (2022-06-01)
|
|
8
15
|
|
|
9
16
|
|
|
@@ -466,7 +466,8 @@ const bootstrapCommand = {
|
|
|
466
466
|
argv.defaultBranch ||
|
|
467
467
|
github.repository.defaultBranch;
|
|
468
468
|
const bootstrapper = new bootstrapper_1.Bootstrapper(github, targetBranch, argv.manifestFile, argv.configFile, argv.initialVersion);
|
|
469
|
-
const
|
|
469
|
+
const path = argv.path || manifest_1.ROOT_PROJECT_PATH;
|
|
470
|
+
const pullRequest = await bootstrapper.bootstrap(path, {
|
|
470
471
|
releaseType: argv.releaseType,
|
|
471
472
|
component: argv.component,
|
|
472
473
|
packageName: argv.packageName,
|
package/package.json
CHANGED