mirror of
https://github.com/edg-l/edlang.git
synced 2024-11-09 09:38: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
|
run: sudo apt-get install libc-dev build-essential
|
||||||
- name: build release
|
- name: build release
|
||||||
run: cargo 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
|
- name: Release
|
||||||
uses: softprops/action-gh-release@v1
|
uses: softprops/action-gh-release@v1
|
||||||
with:
|
with:
|
||||||
body_path: ${{ github.workspace }}/CHANGELOG.md
|
body_path: ${{ github.workspace }}/CHANGELOG-CURRENT.md
|
||||||
generate_release_notes: true
|
generate_release_notes: true
|
||||||
files: |
|
files: |
|
||||||
README.md
|
README.md
|
||||||
LICENSE
|
LICENSE
|
||||||
|
CHANGELOG-CURRENT.md
|
||||||
target/release/edlang
|
target/release/edlang
|
||||||
|
|
|
@ -2,6 +2,12 @@
|
||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
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
|
## [0.0.1-alpha.6] - 2024-02-17
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
Loading…
Reference in a new issue