Skip to content

Commit

Permalink
Update dependencies and prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
segevfiner committed Feb 11, 2024
1 parent f81d674 commit b7cef9b
Show file tree
Hide file tree
Showing 4 changed files with 150 additions and 120 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ jobs:
run: cargo build --verbose --locked -F bin --release --target ${{ matrix.target }}

- name: Package
id: package
shell: bash
run: |
shopt -s extglob
Expand All @@ -51,16 +52,16 @@ jobs:
cp README.md CHANGELOG.md LICENSE $staging/
tar zcf $staging.tar.gz $staging
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
echo "ASSET=$staging.tar.gz" >> $GITHUB_OUTPUT
- uses: actions/upload-artifact@v3
with:
name: release
path: ${{ env.ASSET }}
path: ${{ steps.package.outputs.ASSET }}

- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
draft: true
files: ${{ env.ASSET }}
files: ${{ steps.package.outputs.ASSET }}
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v0.5.1 - 2024-02-11
### Changed
- Updated dependencies.

## v0.5.0 - 2024-02-11
### Added
- An experimental C API buildable using [cargo-c]. See the generated header file for details on the API. See [cargo-c] for futher details on cargo-c usage.
Expand Down

0 comments on commit b7cef9b

Please sign in to comment.