Skip to content

Commit ad05ee0

Browse files
committed
Bump to v0.1.3
1 parent ada7a26 commit ad05ee0

File tree

6 files changed

+9
-5
lines changed

6 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.1.3
4+
5+
- Fix Cargo.lock file
6+
37
## v0.1.2
48

59
- Add `-u, --from-url` support to pypi.org

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "nix-template"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
description = "Utility to generate common nix expressions"
55
license = "CC0-1.0"
66
homepage = "https://github.com/jonringer/nix-template"

nix/nix-template.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ rustPlatform.buildRustPackage rec {
66
src = nix-gitignore.gitignoreSource [] ../.;
77

88
# this will need to be updated anytime Cargo.lock gets changed
9-
cargoSha256 = "sha256-ooSZn57zebr+++/pf9z/ES0l+cTCsa5bnNAn67rG5cA=";
9+
cargoSha256 = "sha256-U/udYh7LcN6xHjcpOqB45fLUmjwXYDVDQ20RX1rHdWM=";
1010

1111
nativeBuildInputs = [ pkg-config makeWrapper ];
1212
buildInputs = [ openssl ];

src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ where
1515

1616
pub fn build_cli() -> App<'static, 'static> {
1717
App::new("nix-template")
18-
.version("0.1.2")
18+
.version("0.1.3")
1919
.author("Jon Ringer <jonringer117@gmail.com>")
2020
.about("Create common nix expressions")
2121
.version_short("V")

src/url.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ fn get_json(request: reqwest::blocking::RequestBuilder) -> Result<String, reqwes
9898

9999
pub fn fetch_pypi_project_info(pypi_repo: &types::PypiRepo) -> types::PypiResponse {
100100
let request_client = Client::new();
101-
let mut request = request_client
101+
let request = request_client
102102
.get(format!("https://pypi.io/pypi/{}/json", pypi_repo.project))
103103
.header("User-Agent", "reqwest")
104104
.header("Content", "application/json");

0 commit comments

Comments
 (0)