Skip to content

Commit

Permalink
fix issue where wrong version of rusteron-code-gen is picked up
Browse files Browse the repository at this point in the history
  • Loading branch information
mimran1980 committed Jan 12, 2025
1 parent aa9dbd3 commit 30884a1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
git config --global user.email "[email protected]"
git config --global user.name "Mo Imran"
release_type="${{ github.event.inputs.release_type }}"
cargo smart-release --bump "$release_type" --verbose
cargo smart-release --bump "$release_type" --update-crates-index --verbose
- name: Push new version and tag to GitHub
uses: ad-m/[email protected]
Expand Down
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ criterion = "0.5"
serial_test = "3.2"
regex = "1.11"
log = "0.4"
rusteron-code-gen = { path = "rusteron-code-gen" }

[release]
update-dependencies = true
Expand All @@ -41,7 +40,7 @@ consolidated_commits = true
prerelease_commit = false
allow_dirty = true
no_confirm = true
changelog = false
changelog = true
verify = false

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion rusteron-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ quote = { workspace = true }
itertools = { workspace = true }
regex = { workspace = true}
log = { workspace = true}
rusteron-code-gen = { workspace = true }
rusteron-code-gen = { path = "../rusteron-code-gen" }

[dev-dependencies]
serial_test = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion rusteron-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ syn = { workspace = true }
proc-macro2 = { workspace = true }
quote = { workspace = true }
itertools = { workspace = true }
rusteron-code-gen = { workspace = true }
rusteron-code-gen = { path = "../rusteron-code-gen" }
log = { workspace = true}
regex = { workspace = true}

Expand Down
2 changes: 1 addition & 1 deletion rusteron-media-driver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ syn = { workspace = true }
proc-macro2 = { workspace = true }
quote = { workspace = true }
itertools = { workspace = true }
rusteron-code-gen = { workspace = true }
rusteron-code-gen = { path = "../rusteron-code-gen" }
log = { workspace = true}
regex = { workspace = true}

Expand Down
2 changes: 1 addition & 1 deletion rusteron-rb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ syn = { workspace = true }
proc-macro2 = { workspace = true }
quote = { workspace = true }
itertools = { workspace = true }
rusteron-code-gen = { workspace = true }
rusteron-code-gen = { path = "../rusteron-code-gen" }
log = { workspace = true}
regex = { workspace = true}

Expand Down

0 comments on commit 30884a1

Please sign in to comment.