-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump version to v0.4.0 and build changelog Signed-off-by: Thane Thomson <[email protected]> * Add GitHub action to release binaries Signed-off-by: Thane Thomson <[email protected]>
- Loading branch information
1 parent
ab19fce
commit 1f76e5e
Showing
8 changed files
with
72 additions
and
4 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
This version is a pretty major breaking change from the previous one. Some of | ||
the highlights: | ||
|
||
1. Entries can now be automatically generated from the CLI. This is only | ||
available, however, for projects hosted on GitHub at the moment, since links | ||
to issues/pull requests need to be automatically generated. | ||
2. A configuration file (`.changelog/config.toml`) can now be specified that | ||
allows you to override many of the default settings. See the `README.md` file | ||
for more details. | ||
3. Components/submodules are no longer automatically detected and must be | ||
specified through the configuration file. This allows the greatest level of | ||
flexibility for all kinds of projects instead of limiting `unclog` to just | ||
Rust projects and implementing per-project-type component detection. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
release: | ||
name: release ${{ matrix.target }} | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
target: | ||
[ | ||
x86_64-unknown-linux-musl, | ||
x86_64-apple-darwin, | ||
x86_64-pc-windows-gnu, | ||
] | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Compile and release | ||
uses: rust-build/rust-build.action@latest | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
RUSTTARGET: ${{ matrix.target }} | ||
ARCHIVE_TYPES: ${{ matrix.archive }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "unclog" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
authors = ["Thane Thomson <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters