File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 2.2.0] - 2022-09-01
11
+
10
12
### Changed
11
13
12
14
- Allow more section types into prerelease versions. #67
13
15
16
+ ### Fixed
17
+
18
+ - Change the links' syntax to make them correctly recognized by GitHub.
19
+
14
20
## [ 2.1.1] - 2022-07-03
15
21
16
22
### Fixed
@@ -108,7 +114,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
108
114
109
115
- CHANGELOG can be parsed by the github action
110
116
111
- [ unreleased ] : https://github.com/olivierlacan/keep-a-changelog/compare/v2.1.1...HEAD
117
+ [ unreleased ] : https://github.com/olivierlacan/keep-a-changelog/compare/v2.2.0...HEAD
118
+ [ 2.2.0 ] : https://github.com/mindsers/changelog-reader-action/compare/v2.1.1...v2.2.0
112
119
[ 2.1.1 ] : https://github.com/mindsers/changelog-reader-action/compare/v2.1.0...v2.1.1
113
120
[ 2.1.0 ] : https://github.com/mindsers/changelog-reader-action/compare/v2.0.0...v2.1.0
114
121
[ 2.0.0 ] : https://github.com/mindsers/changelog-reader-action/compare/v1.3.1...v2.0.0
Original file line number Diff line number Diff line change @@ -506,7 +506,7 @@ exports.addLinks = links => entry => {
506
506
let results = null
507
507
while ( ( results = linkRegex . exec ( text ) ) != null ) {
508
508
const link = links . find ( element => element . includes ( results [ 1 ] ) )
509
- tempText = `${ tempText } \n${ link } `
509
+ tempText = `${ tempText } \n\n ${ link } `
510
510
}
511
511
512
512
return { ...entry , text : tempText . trim ( ) }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " changelog-reader-action" ,
3
- "version" : " 2.1.1 " ,
3
+ "version" : " 2.2.0 " ,
4
4
"description" : " A GitHub Action to read your CHANGELOG" ,
5
5
"main" : " index.js" ,
6
6
"homepage" : " https://github.com/mindsers/changelog-reader-action#readme" ,
You can’t perform that action at this time.
0 commit comments