Skip to content

Commit

Permalink
Bump version to 1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nabijaczleweli committed Sep 19, 2019
1 parent c61f86a commit d0d8c52
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ categories = ["development-tools::cargo-plugins"]
license = "MIT"
build = "build.rs"
# Remember to also update in appveyor.yml
version = "1.8.2"
version = "1.8.3"
# Remember to also update in man/*.md
authors = ["nabijaczleweli <[email protected]>",
"Yann Simon <[email protected]>",
Expand Down
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.8.2-{build}
version: 1.8.3-{build}

skip_tags: false

Expand All @@ -25,17 +25,17 @@ build: off
build_script:
- git submodule update --init --recursive
- cargo build --release
- cp target\release\cargo-install-update.exe cargo-install-update-v1.8.2.exe
- strip --strip-all --remove-section=.comment --remove-section=.note cargo-install-update-v1.8.2.exe
- cp target\release\cargo-install-update.exe cargo-install-update-v1.8.3.exe
- strip --strip-all --remove-section=.comment --remove-section=.note cargo-install-update-v1.8.3.exe

test: off

artifacts:
- path: cargo-install-update-v1.8.2.exe
- path: cargo-install-update-v1.8.3.exe

deploy:
provider: GitHub
artifact: cargo-install-update-v1.8.2.exe
artifact: cargo-install-update-v1.8.3.exe
auth_token:
secure: 8dP4MwLtHqrSNKYKeSGSt8vm/QIc+0LHdSoI2ReFPAWEL9VrU8+88YcjQNcF6Wzn
on:
Expand Down
2 changes: 1 addition & 1 deletion src/ops/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ fn with_authentication<T, F>(url: &str, mut f: F) -> Result<T, GitError>
ssh_attempts += 1;
if ssh_attempts == 1 {
ssh_agent_attempts.push(uname.to_string());
return git2::Cred::ssh_key_from_agent(&uname);
return GitCred::ssh_key_from_agent(&uname);
}
}

Expand Down

0 comments on commit d0d8c52

Please sign in to comment.