mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-22 07:58:24 +00:00
cliff
This commit is contained in:
parent
70879d9e2e
commit
390cf05f5a
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue