Skip to content

Commit

Permalink
Bump version to 0.3.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
de-vri-es committed Nov 15, 2023
1 parent e474ac9 commit c7836c9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "git-version"
description = "Compile the git version (tag name, or hash otherwise) and dirty state into your program."
version = "0.3.7"
version = "0.3.8"
authors = [
"Mara Bos <[email protected]>",
"Maarten de Vries <[email protected]>",
Expand All @@ -16,7 +16,7 @@ edition = "2021"
readme = "README.md"

[dependencies]
git-version-macro = { version = "=0.3.6", path = "git-version-macro" }
git-version-macro = { version = "=0.3.8", path = "git-version-macro" }

[workspace]
resolver = "2"
Expand Down
3 changes: 2 additions & 1 deletion git-version-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-version-macro"
version = "0.3.7"
version = "0.3.8"
authors = [
"David Roundy <[email protected]>",
"Maarten de Vries <[email protected]>",
Expand All @@ -25,3 +25,4 @@ syn = "2.0"

[dev-dependencies]
assert2 = "0.3.11"
git-version = { path = ".." }
6 changes: 4 additions & 2 deletions git-version-macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,13 @@ impl Parse for Args {
///
/// # Examples
///
/// ```ignore
/// ```
/// # use git_version::git_version;
/// const VERSION: &str = git_version!();
/// ```
///
/// ```ignore
/// ```
/// # use git_version::git_version;
/// const VERSION: &str = git_version!(args = ["--abbrev=40", "--always"]);
/// ```
///
Expand Down

0 comments on commit c7836c9

Please sign in to comment.