Skip to content

Commit

Permalink
Release 0.6.5 (#64)
Browse files Browse the repository at this point in the history
* Release 0.6.5

* Update Cargo hash

* Fix linter warnings
  • Loading branch information
rvanasa committed Jan 19, 2023
1 parent 3b38f3f commit 05f1a1d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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 = "vessel"
version = "0.6.5-alpha.0"
version = "0.6.5"
authors = ["DFINITY Stiftung (https://github.com/orgs/dfinity/teams/languages)"]
edition = "2018"
description = "A package manager for the Motoko programming language."
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let
filter = noNixFile;
src = subpath ./.;
};
cargoSha256 = "sha256-xb6eNyNQCObVHQ9VSAMJ2avC5mCJZF50CgVSBb2Jk38";
cargoSha256 = "sha256-Guy2pi8qWRJWendOadGD6GPZpjEbbmEQ2OqiixrNqK4=";
verifyCargoDeps = true;
};
in rec {
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ pub fn download_compiler(version: &str) -> Result<PathBuf> {

let client = reqwest::blocking::Client::new();
let response = client
.get(&target)
.get(target)
.header(reqwest::header::USER_AGENT, "vessel")
.send()?;

Expand Down Expand Up @@ -336,7 +336,7 @@ fn download_tar_ball(tmp: &Path, dest: &Path, repo: &str, version: &str) -> Resu
repo.trim_end_matches(".git"),
version
);
let response = reqwest::blocking::get(&target)?;
let response = reqwest::blocking::get(target)?;

if !response.status().is_success() {
return Err(anyhow::anyhow!(
Expand Down

0 comments on commit 05f1a1d

Please sign in to comment.