Skip to content

Commit

Permalink
Merge pull request #42 from sendbird/release/0.2.0
Browse files Browse the repository at this point in the history
chore(release): publish 0.2.0
  • Loading branch information
bang9 authored Nov 27, 2024
2 parents cbf1d66 + ca63803 commit 1aa4fd5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,19 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [0.2.0](https://github.com/sendbird/release-automation-action/compare/0.1.8...0.2.0)

- feat: support dashes in extractVersion [`#41`](https://github.com/sendbird/release-automation-action/pull/41)
- docs: update readme [`#40`](https://github.com/sendbird/release-automation-action/pull/40)
- chore(release): publish 0.1.8 [`#39`](https://github.com/sendbird/release-automation-action/pull/39)

#### [0.1.8](https://github.com/sendbird/release-automation-action/compare/0.1.7...0.1.8)

> 1 August 2024
- fix: add missing framework in version prefix builder [`#38`](https://github.com/sendbird/release-automation-action/pull/38)
- chore(release): publish 0.1.7 [`#37`](https://github.com/sendbird/release-automation-action/pull/37)
- chore: release v0.1.8 [`079287b`](https://github.com/sendbird/release-automation-action/commit/079287b90b1414d2cc5b39a583ddcec9d52483a0)
- docs: update README.md [`0419c4f`](https://github.com/sendbird/release-automation-action/commit/0419c4ff2e62b19ebca027a002c0082b6ab75917)

#### [0.1.7](https://github.com/sendbird/release-automation-action/compare/0.1.6...0.1.7)
Expand Down
8 changes: 6 additions & 2 deletions __tests__/utils.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,11 @@ describe('extractVersion', () => {
expect(extractVersion('hotfix/chat-ai-widget/v1.2.3')).toBe('1.2.3')
expect(extractVersion('release/chat-ai-widget/v1.2.3')).toBe('1.2.3')

expect(extractVersion('release/ktx/message-template/v1.2.3-beta.0')).toBe('1.2.3-beta.0')
expect(extractVersion('hotfix/ktx/message-template/v1.2.3-beta.0')).toBe('1.2.3-beta.0')
expect(extractVersion('release/ktx/message-template/v1.2.3-beta.0')).toBe(
'1.2.3-beta.0'
)
expect(extractVersion('hotfix/ktx/message-template/v1.2.3-beta.0')).toBe(
'1.2.3-beta.0'
)
})
})
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "release-automation-action",
"version": "0.1.8",
"version": "0.2.0",
"private": true,
"description": "Sendbird Automate release process with GitHub Actions",
"license": "MIT",
Expand Down

0 comments on commit 1aa4fd5

Please sign in to comment.