This commit is contained in:
Colin Woodbury
2020-07-18 08:07:12 -07:00
parent 4d49e5de70
commit 1a9d6d4a5d
2 changed files with 10 additions and 1 deletions

View File

@@ -1,5 +1,11 @@
# `cargo-aur` Changelog # `cargo-aur` Changelog
## 1.0.3 (2020-07-18)
#### Changed
- Better release profile which produces smaller binaries.
## 1.0.2 (2020-06-22) ## 1.0.2 (2020-06-22)
#### Changed #### Changed

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "cargo-aur" name = "cargo-aur"
version = "1.0.2" version = "1.0.3"
authors = ["Colin Woodbury <colin@fosskers.ca>"] authors = ["Colin Woodbury <colin@fosskers.ca>"]
edition = "2018" edition = "2018"
description = "Prepare Rust projects to be released on the Arch Linux User Repository." description = "Prepare Rust projects to be released on the Arch Linux User Repository."
@@ -18,3 +18,6 @@ itertools = "0.9"
serde = "1.0" serde = "1.0"
serde_derive = "1.0" serde_derive = "1.0"
toml = "0.5" toml = "0.5"
[profile.release]
lto = true