Skip to content

Commit

Permalink
Add GH release step on CI and tweak changelog styles
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler committed Oct 17, 2024
1 parent 72befa1 commit 2d99b39
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 14 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ env:
jobs:
publish:
runs-on: macos-latest

permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
Expand All @@ -25,9 +26,13 @@ jobs:
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.ARTIFACT_SIGNING_PRIVATE_KEY }}

- uses: ffurrer2/extract-release-notes@v2
id: release_notes

- uses: ncipollo/release-action@v1
- name: Extract release notes
id: extract-release-notes
uses: ffurrer2/extract-release-notes@v2
with:
body: ${{ steps.release_notes.outputs.release_notes }}
release_notes_file: RELEASE_NOTES.md

- name: Create GitHub release
run: gh release create ${{ github.ref_name }} --notes-file RELEASE_NOTES.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32 changes: 24 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,47 @@
# Change Log

## Unreleased
## [Unreleased]

## Version 0.5.0 *(2024-10-17)*
## [0.5.0] *(2024-10-17)*

* Fix: Apply specializations for Kotlin/JS and Kotlin/Native. We had bugs that caused our compiler
plug-in to skip non-JVM platforms.
**Fixed**

* Fix: Apply specializations for Kotlin/JS and Kotlin/Native. We had bugs that caused our compiler
plug-in to skip non-JVM platforms.

## Version 0.4.0 *(2024-10-16)*

## [0.4.0] *(2024-10-16)*

**Added**

* New: Require JDK 1.8+.
* New: Run the first specialization when launching from the IDE.


## Version 0.3.0 *(2024-10-15)*
## [0.3.0] *(2024-10-15)*

**Fixed**

* Fix: Don't generate invalid bytecode by attaching a test class constructor to its enclosing file.


## Version 0.3.0 *(2024-10-10)*
## [0.2.0] *(2024-10-10)*

**Added**

* New: Support both class constructor parameters and test function parameters.


## Version 0.1.0 *(2024-10-08)*
## [0.1.0] *(2024-10-08)*

Initial release. We're rebooting the [Burst] project that released 1.0 ten years ago.



[Unreleased]: https://github.com/cashapp/burst/compare/0.5.0...HEAD
[0.5.0]: https://github.com/cashapp/burst/releases/tag/0.4.0
[0.4.0]: https://github.com/cashapp/burst/releases/tag/0.4.0
[0.3.0]: https://github.com/cashapp/burst/releases/tag/0.3.0
[0.2.0]: https://github.com/cashapp/burst/releases/tag/0.2.0
[0.1.0]: https://github.com/cashapp/burst/releases/tag/0.1.0
[Burst]: https://github.com/square/burst

0 comments on commit 2d99b39

Please sign in to comment.