Skip to content

Commit 4df77c5

Browse files
committed
Release v0.6.4
- Fix version - Only build for two targets
1 parent 9356736 commit 4df77c5

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/release.yaml

-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
job:
21-
- { os: ubuntu-18.04 , target: arm-unknown-linux-gnueabihf , use-cross: true }
22-
- { os: ubuntu-18.04 , target: aarch64-unknown-linux-gnu , use-cross: true }
23-
- { os: ubuntu-18.04 , target: i686-unknown-linux-gnu , use-cross: true }
2421
- { os: ubuntu-18.04 , target: x86_64-unknown-linux-gnu }
2522
- { os: macos-10.15 , target: x86_64-apple-darwin }
2623
steps:

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "atuin"
3-
version = "0.6.3"
3+
version = "0.6.4"
44
authors = ["Ellie Huxtable <[email protected]>"]
55
edition = "2018"
66
license = "MIT"

src/main.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ use command::AtuinCmd;
1111

1212
mod command;
1313

14+
const VERSION: &str = env!("CARGO_PKG_VERSION");
15+
1416
#[derive(StructOpt)]
1517
#[structopt(
1618
author = "Ellie Huxtable <[email protected]>",
17-
version = "0.5.0",
19+
version = VERSION,
1820
about = "Magical shell history",
1921
global_settings(&[AppSettings::ColoredHelp, AppSettings::DeriveDisplayOrder])
2022
)]

0 commit comments

Comments
 (0)