Release v0.6.4

- Fix version
- Only build for two targets
This commit is contained in:
Ellie Huxtable 2021-04-26 18:36:19 +01:00
parent 9356736ca1
commit 4df77c5201
4 changed files with 5 additions and 6 deletions

View File

@ -18,9 +18,6 @@ jobs:
fail-fast: false
matrix:
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: macos-10.15 , target: x86_64-apple-darwin }
steps:

2
Cargo.lock generated
View File

@ -82,7 +82,7 @@ dependencies = [
[[package]]
name = "atuin"
version = "0.6.3"
version = "0.6.4"
dependencies = [
"async-trait",
"atuin-client",

View File

@ -1,6 +1,6 @@
[package]
name = "atuin"
version = "0.6.3"
version = "0.6.4"
authors = ["Ellie Huxtable <ellie@elliehuxtable.com>"]
edition = "2018"
license = "MIT"

View File

@ -11,10 +11,12 @@ use command::AtuinCmd;
mod command;
const VERSION: &str = env!("CARGO_PKG_VERSION");
#[derive(StructOpt)]
#[structopt(
author = "Ellie Huxtable <e@elm.sh>",
version = "0.5.0",
version = VERSION,
about = "Magical shell history",
global_settings(&[AppSettings::ColoredHelp, AppSettings::DeriveDisplayOrder])
)]