Skip to content

Commit e1fc7a6

Browse files
committed
fix: Remove self dependecy for release
1 parent bf7b751 commit e1fc7a6

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Create new version
2828
if: ${{ steps.get_next_version.outputs.hasNextVersion == 'true' }}
2929
run: |
30-
cargo install cargo-set-version
30+
cargo install cargo-edit
3131
cargo set-version ${{ steps.get_next_version.outputs.version }}
3232
git config --global user.email "[email protected]"
3333
git config --global user.name "${{ github.actor }}"

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,10 @@ typed-builder = "0.21.0"
3333
url = "2.5.4"
3434

3535
[dev-dependencies]
36-
eventsourcingdb = { path = ".", features = ["testcontainer"] , version = "0.1.0" }
3736
testcontainers = { version = "0.24.0", features = ["http_wait"] }
3837
tokio = { version = "1.45.1", features = ["full"] }
3938
tokio-test = "0.4.4"
4039

4140
# This is metadata required for working docs on docs.rs
4241
[package.metadata.docs.rs]
43-
features = ["testcontainer"]
42+
features = ["testcontainer"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ analyze:
66
@cargo doc --all-features --no-deps --document-private-items
77

88
test:
9-
@cargo test
9+
@cargo test --features testcontainer
1010

1111
format:
1212
@cargo fmt

0 commit comments

Comments
 (0)