Skip to content

Commit

Permalink
ci: minor fixes for the release process (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-bodnar authored Dec 20, 2023
1 parent dc3aef0 commit cb0e1d5
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
- name: Install release-it globally
run: |
npm i -g release-it
npm i -g @release-it/conventional-changelog
npm i -g release-it@16.2.1
npm i -g @release-it/conventional-changelog@7.0.2
- name: git config
run: |
Expand Down
13 changes: 12 additions & 1 deletion .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,18 @@
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{}
]
},
"infile": "CHANGELOG.md",
"header": "# Change Log"
Expand Down
18 changes: 14 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
# Change Log

## 0.2.2 (2023-12-20)

- fix: ban top level t() calls aside from t`` calls (#26) (5ca48ad)
- chore(deps): bump semver from 6.3.0 to 6.3.1 (#24) (7c588c4)
- chore(deps): bump @babel/traverse from 7.22.8 to 7.23.5 (#23) (7c3bd2a)

* fix(no-unlocalized-strings): utilize ignoreFunction which is used as CallExpression (#21) (e84de6e)
* fix(no-unlocalized-strings): utilize TS enums when if parserServices.program is empty (#22) (5078ea0)
## 0.2.1 (2023-12-08)

- fix(no-unlocalized-strings): utilize ignoreFunction which is used as CallExpression (#21) (e84de6e)
- fix(no-unlocalized-strings): utilize TS enums when if parserServices.program is empty (#22) (5078ea0)

## 0.2.0 (2023-10-06)

- feat(no-unlocalized-strings): add ignoreProperty option (#20) (a4d7683)

* test: add a new test case for the ignoreFunction option (#19) (3b32de7)
* fix: update no-unlocalized to properly utilize ignoreFunction option (#16) (5e95b3e)
## 0.1.2 (2023-09-28)

- test: add a new test case for the ignoreFunction option (#19) (3b32de7)
- fix: update no-unlocalized to properly utilize ignoreFunction option (#16) (5e95b3e)

## 0.1.1 (2023-09-11)

- ci: improve the release process (#15) (46077d3)
- chore: change nodejs engine requirement (#14) (4cb2f1e)
Expand Down

0 comments on commit cb0e1d5

Please sign in to comment.