Skip to content

Commit

Permalink
chore: 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
frectonz committed Nov 15, 2024
1 parent 222f70e commit 82324e9
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions 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 parenv-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parenv-derive"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT"
description = "Macro implementation of #[derive(Environment)]"
Expand Down
2 changes: 1 addition & 1 deletion parenv-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ version = "0.1.0"
edition = "2021"

[dependencies]
parenv = { version = "0.1.1", path = "../parenv" }
parenv = { version = "0.1.2", path = "../parenv" }
2 changes: 1 addition & 1 deletion parenv-test/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ struct Env {
/// The dog
dog: SocketAddr,
/// The file
file: Option<PathBuf>,
file: PathBuf,
}

fn main() {
Expand Down
4 changes: 2 additions & 2 deletions parenv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parenv"
version = "0.1.1"
version = "0.1.2"
edition = "2021"
license = "MIT"
description = "Environment variable parser with a clap style derive macro and elm style error reporting."
Expand All @@ -10,4 +10,4 @@ readme = "../README.md"
[dependencies]
miette = { version = "7.2.0", features = ["fancy"] }
owo-colors = "4.1.0"
parenv-derive = { version = "0.1.1", path = "../parenv-derive" }
parenv-derive = { version = "0.1.2", path = "../parenv-derive" }

0 comments on commit 82324e9

Please sign in to comment.