Skip to content

Commit ce5fc53

Browse files
committed
version bump
1 parent 3514491 commit ce5fc53

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ jobs:
7575
override: true
7676

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

8080
- name: Upload binaries to release
8181
uses: svenstaro/upload-release-action@v2
8282
with:
8383
repo_token: ${{ secrets.GITHUB_TOKEN }}
84-
file: target/release/zsh-histdb-skim
84+
file: target/x86_64-apple-darwin/release/zsh-histdb-skim
8585
asset_name: zsh-histdb-skim-darwin-x64
8686
tag: ${{ github.ref }}
8787

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zsh-histdb-skim"
3-
version = "0.8.7"
3+
version = "0.9.1"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ fn main() -> Result<()> {
236236
}(args);
237237

238238
if query == "--version" {
239-
println!("v0.9.0");
239+
println!("v0.9.1");
240240
std::process::exit(1);
241241
}
242242

zsh-histdb-skim.zsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ XDG_BIN_PATH=${XDG_DATA_HOME:-$HOME/.local/share}/zsh-histdb-skim/
22
BIN_DIR=${HISTDB_SKIM_PATH:-${XDG_BIN_PATH}}
33
BIN_PATH=${BIN_DIR}/zsh-histdb-skim
44

5-
HISTB_SKIM_VERSION="v0.9.0"
5+
HISTB_SKIM_VERSION="v0.9.1"
66

77
histdb-skim-get-os(){
88
UNAME_STR=`uname -a`

0 commit comments

Comments
 (0)