Skip to content

Commit

Permalink
chore: 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
frectonz committed Nov 14, 2024
1 parent 0ce4951 commit 8cfbf6b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 11 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,13 @@ env:

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Build
run: cargo build --verbose

- name: Publish `parenv-derive`
run: cargo publish -p parenv-derive

- name: Publish `parenv`
run: cargo publish -p parenv
1 change: 0 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ env:

jobs:
build:

runs-on: ubuntu-latest

steps:
Expand Down
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.0"
version = "0.1.1"
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.0", path = "../parenv" }
parenv = { version = "0.1.1", path = "../parenv" }
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.0"
version = "0.1.1"
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.0", path = "../parenv-derive" }
parenv-derive = { version = "0.1.1", path = "../parenv-derive" }

0 comments on commit 8cfbf6b

Please sign in to comment.