diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e06a94..ce2b02b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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). +## [1.0.0-beta.7] - 2022-05-19 + +### Fixed + +- Use correct file name to upload release assets. + ## [1.0.0-beta.6] - 2022-05-19 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index a7f7bec..bc34dfe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -585,7 +585,7 @@ checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" [[package]] name = "falconeri" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" dependencies = [ "base64", "crossbeam", @@ -604,7 +604,7 @@ dependencies = [ [[package]] name = "falconeri-worker" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" dependencies = [ "crossbeam", "env_logger", @@ -618,7 +618,7 @@ dependencies = [ [[package]] name = "falconeri_common" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" dependencies = [ "anyhow", "backoff", @@ -645,7 +645,7 @@ dependencies = [ [[package]] name = "falconerid" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" dependencies = [ "falconeri_common", "headers", diff --git a/build-release b/build-release index bfa3fdd..f3ce978 100755 --- a/build-release +++ b/build-release @@ -24,11 +24,11 @@ case `uname -s` in docker cp build-"$1"-run:/home/rust/src/guide/book gh-pages docker rm build-"$1"-run docker rmi build-"$1" - zip -j "$1"-"$2".zip bin/falconeri bin/falconeri-worker + zip -j "$1"_"$2".zip bin/falconeri bin/falconeri-worker ;; *) echo "Building standard release binaries" cargo build -p falconeri --release - zip -j "$1"-"$2".zip target/release/"$1" + zip -j "$1"_"$2".zip target/release/"$1" ;; esac diff --git a/falconeri-worker/Cargo.toml b/falconeri-worker/Cargo.toml index 72a7dd1..0e5113e 100644 --- a/falconeri-worker/Cargo.toml +++ b/falconeri-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconeri-worker" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" authors = ["Eric Kidd "] edition = "2018" diff --git a/falconeri/Cargo.toml b/falconeri/Cargo.toml index 2ccb7f9..5a7c569 100644 --- a/falconeri/Cargo.toml +++ b/falconeri/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Eric Kidd "] name = "falconeri" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/falconeri_common/Cargo.toml b/falconeri_common/Cargo.toml index b453ce2..4a6b7c9 100644 --- a/falconeri_common/Cargo.toml +++ b/falconeri_common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconeri_common" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" authors = ["Eric Kidd "] edition = "2018" diff --git a/falconerid/Cargo.toml b/falconerid/Cargo.toml index 190dfcb..a7a300b 100644 --- a/falconerid/Cargo.toml +++ b/falconerid/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconerid" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" authors = ["Eric Kidd "] edition = "2018"