release-please 13.18.4 → 13.18.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.
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.5](https://github.com/googleapis/release-please/compare/v13.18.4...v13.18.5) (2022-06-24)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * **ruby-yoshi:** don't remove PR link from changelog ([#1479](https://github.com/googleapis/release-please/issues/1479)) ([6faaebe](https://github.com/googleapis/release-please/commit/6faaebe3c317bfa1b4d98992733283296bafa20f))
13
+
7
14
  ## [13.18.4](https://github.com/googleapis/release-please/compare/v13.18.3...v13.18.4) (2022-06-24)
8
15
 
9
16
 
@@ -85,7 +85,7 @@ class RubyYoshi extends base_1.BaseStrategy {
85
85
  // Remove bolded scope from change lines
86
86
  .replace(/^\* \*\*[\w-]+:\*\* /gm, '* ')
87
87
  // Remove PR and commit links from pull request title suffixes
88
- .replace(/( \(\[(\w+|#\d+)\]\(https:\/\/github\.com\/[^)]*\)\))+\s*$/gm, '')
88
+ .replace(/(\(\[(\w+)\]\(https:\/\/github\.com\/[^)]*\)\))+\s*$/gm, '')
89
89
  // Standardize on h4 for change type subheaders
90
90
  .replace(/^### (Features|Bug Fixes|Documentation)$/gm, '#### $1')
91
91
  // Collapse 2 or more blank lines
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "release-please",
3
- "version": "13.18.4",
3
+ "version": "13.18.5",
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",