From 845d7a588f49d074d1a2270aa03bec15d0a558ab Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 15 Jul 2024 14:47:42 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f7c1d8..3694e27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.10](https://github.com/cargo-bins/simple-git/compare/v0.2.9...v0.2.10) - 2024-07-15 + +### Other +- Add new API `Repository::get_head_commit_hash()` ([#31](https://github.com/cargo-bins/simple-git/pull/31)) + ## [0.2.9](https://github.com/cargo-bins/simple-git/compare/v0.2.8...v0.2.9) - 2024-07-11 ### Other diff --git a/Cargo.lock b/Cargo.lock index f441b9c..a5278ff 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2158,7 +2158,7 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" [[package]] name = "simple-git" -version = "0.2.9" +version = "0.2.10" dependencies = [ "compact_str", "derive_destructure2", diff --git a/Cargo.toml b/Cargo.toml index 6fb84a3..b417fc3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "simple-git" -version = "0.2.9" +version = "0.2.10" edition = "2021" description = "The simple git interface for gix suitable for async context (with tokio)"