From a748e5517691f1dec51890b55b9c5f8a0ade74df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Fri, 16 Aug 2024 06:51:32 -0700 Subject: [PATCH] Bump version to 0.1.6 This change bumps the program's version to 0.1.6. The following notable changes have been made since 0.1.5: - Fixed handling of renamed packages - Stop requiring Git user configuration to be present by using reasonable defaults - Added `Dockerfile` and adjusted CI to build and publish Docker image to GHCR - Include and manage Cargo.lock file in repository - Bumped minimum supported Rust version to 1.63 --- CHANGELOG.md | 4 ++-- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 078ec8f..b2d3d73 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -Unreleased ----------- +0.1.6 +----- - Fixed handling of renamed packages - Stop requiring Git user configuration to be present by using reasonable defaults diff --git a/Cargo.lock b/Cargo.lock index 6548990..1944a45 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -99,7 +99,7 @@ checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" [[package]] name = "cargo-http-registry" -version = "0.1.5" +version = "0.1.6" dependencies = [ "anyhow", "git2", diff --git a/Cargo.toml b/Cargo.toml index dbc58ae..a042b54 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-http-registry" -version = "0.1.5" +version = "0.1.6" authors = ["Daniel Mueller "] edition = "2021" rust-version = "1.63"