Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
m42e committed Jul 4, 2024
1 parent 3514491 commit ce5fc53
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,13 @@ jobs:
override: true

- name: Build for mac
run: cargo build --all --release --target x86_64-apple-darwin && strip target/release/zsh-histdb-skim
run: cargo build --all --release --target x86_64-apple-darwin && strip target/x86_64-apple-darwin/release/zsh-histdb-skim

- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: target/release/zsh-histdb-skim
file: target/x86_64-apple-darwin/release/zsh-histdb-skim
asset_name: zsh-histdb-skim-darwin-x64
tag: ${{ github.ref }}

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zsh-histdb-skim"
version = "0.8.7"
version = "0.9.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ fn main() -> Result<()> {
}(args);

if query == "--version" {
println!("v0.9.0");
println!("v0.9.1");
std::process::exit(1);
}

Expand Down
2 changes: 1 addition & 1 deletion zsh-histdb-skim.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ XDG_BIN_PATH=${XDG_DATA_HOME:-$HOME/.local/share}/zsh-histdb-skim/
BIN_DIR=${HISTDB_SKIM_PATH:-${XDG_BIN_PATH}}
BIN_PATH=${BIN_DIR}/zsh-histdb-skim

HISTB_SKIM_VERSION="v0.9.0"
HISTB_SKIM_VERSION="v0.9.1"

histdb-skim-get-os(){
UNAME_STR=`uname -a`
Expand Down

0 comments on commit ce5fc53

Please sign in to comment.