Release v0.6.4
- Fix version - Only build for two targets
This commit is contained in:
parent
9356736ca1
commit
4df77c5201
4 changed files with 5 additions and 6 deletions
3
.github/workflows/release.yaml
vendored
3
.github/workflows/release.yaml
vendored
|
@ -18,9 +18,6 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
job:
|
job:
|
||||||
- { os: ubuntu-18.04 , target: arm-unknown-linux-gnueabihf , use-cross: true }
|
|
||||||
- { os: ubuntu-18.04 , target: aarch64-unknown-linux-gnu , use-cross: true }
|
|
||||||
- { os: ubuntu-18.04 , target: i686-unknown-linux-gnu , use-cross: true }
|
|
||||||
- { os: ubuntu-18.04 , target: x86_64-unknown-linux-gnu }
|
- { os: ubuntu-18.04 , target: x86_64-unknown-linux-gnu }
|
||||||
- { os: macos-10.15 , target: x86_64-apple-darwin }
|
- { os: macos-10.15 , target: x86_64-apple-darwin }
|
||||||
steps:
|
steps:
|
||||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -82,7 +82,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "atuin"
|
name = "atuin"
|
||||||
version = "0.6.3"
|
version = "0.6.4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-trait",
|
"async-trait",
|
||||||
"atuin-client",
|
"atuin-client",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "atuin"
|
name = "atuin"
|
||||||
version = "0.6.3"
|
version = "0.6.4"
|
||||||
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|
|
@ -11,10 +11,12 @@ use command::AtuinCmd;
|
||||||
|
|
||||||
mod command;
|
mod command;
|
||||||
|
|
||||||
|
const VERSION: &str = env!("CARGO_PKG_VERSION");
|
||||||
|
|
||||||
#[derive(StructOpt)]
|
#[derive(StructOpt)]
|
||||||
#[structopt(
|
#[structopt(
|
||||||
author = "Ellie Huxtable <e@elm.sh>",
|
author = "Ellie Huxtable <e@elm.sh>",
|
||||||
version = "0.5.0",
|
version = VERSION,
|
||||||
about = "Magical shell history",
|
about = "Magical shell history",
|
||||||
global_settings(&[AppSettings::ColoredHelp, AppSettings::DeriveDisplayOrder])
|
global_settings(&[AppSettings::ColoredHelp, AppSettings::DeriveDisplayOrder])
|
||||||
)]
|
)]
|
||||||
|
|
Loading…
Add table
Reference in a new issue