Skip to content

Commit

Permalink
Bump version to v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rschmitt committed Nov 11, 2018
1 parent 8d446c2 commit 3a43ab5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heatseeker"
version = "1.5.2"
version = "1.6.0"
authors = ["Ryan Schmitt <[email protected]>"]
description = "A fast, robust, and portable fuzzy finder."
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions create-nupkg.bat
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ copy README.md chocolatey\tools\README || exit /b 1

mkdir chocolatey\tools\bin || exit /b 1

wget -q https://github.com/rschmitt/heatseeker/releases/download/v1.5.2/heatseeker-v1.5.2-x86_64-pc-windows-msvc.zip || exit /b 1
7z x heatseeker-v1.5.2-x86_64-pc-windows-msvc.zip || exit /b 1
del heatseeker-v1.5.2-x86_64-pc-windows-msvc.zip
wget -q https://github.com/rschmitt/heatseeker/releases/download/v1.6.0/heatseeker-v1.6.0-x86_64-pc-windows-msvc.zip || exit /b 1
7z x heatseeker-v1.6.0-x86_64-pc-windows-msvc.zip || exit /b 1
del heatseeker-v1.6.0-x86_64-pc-windows-msvc.zip
move hs.exe chocolatey\tools\bin || exit /b 1

choco pack chocolatey\heatseeker.nuspec || exit /b 1
2 changes: 1 addition & 1 deletion heatseeker.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>heatseeker</id>
<version>1.5.2</version>
<version>1.6.0</version>
<title>Heatseeker</title>
<authors>Ryan Schmitt</authors>
<owners>Ryan Schmitt</owners>
Expand Down
5 changes: 2 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,10 @@ fn main() {
if args.help { return; }

if args.version {
const THREADS: &'static str = "multi-threaded";
if COMMIT == "" {
println!("heatseeker {} {} (built {} for {})", VERSION, THREADS, TIMESTAMP, TARGET);
println!("heatseeker {} (built {} for {})", VERSION, TIMESTAMP, TARGET);
} else {
println!("heatseeker {} {} ({}) (built {} for {})", VERSION, THREADS, COMMIT, TIMESTAMP, TARGET);
println!("heatseeker {}-{} (built {} for {})", VERSION, COMMIT, TIMESTAMP, TARGET);
}
return;
}
Expand Down

0 comments on commit 3a43ab5

Please sign in to comment.