This commit is contained in:
Edgar 2024-02-17 17:37:42 +01:00
parent 70879d9e2e
commit 390cf05f5a
No known key found for this signature in database
GPG key ID: 70ADAE8F35904387
2 changed files with 15 additions and 1 deletions

View file

@ -32,12 +32,20 @@ jobs:
run: sudo apt-get install libc-dev build-essential
- name: build release
run: cargo build --release
- name: Generate a changelog
uses: orhun/git-cliff-action@v2
id: git-cliff
with:
args: -l
env:
OUTPUT: CHANGELOG-CURRENT.md
- name: Release
uses: softprops/action-gh-release@v1
with:
body_path: ${{ github.workspace }}/CHANGELOG.md
body_path: ${{ github.workspace }}/CHANGELOG-CURRENT.md
generate_release_notes: true
files: |
README.md
LICENSE
CHANGELOG-CURRENT.md
target/release/edlang

View file

@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## [0.0.1-alpha.7] - 2024-02-17
### Features
- Compile unary op, compile asref, compile deref, reference arguments, avoid some temporaries on direct use
## [0.0.1-alpha.6] - 2024-02-17
### Bug Fixes