Note need to publish with nightly cargo (#506)
Until github.com/rust-lang/cargo/pull/7333 makes it into stable rust, we'll be forced to publish using nightly, due to our unpublished dev dependency on `test-utilities`.
This commit is contained in:
parent
f3b8030070
commit
8e084a7042
@ -40,6 +40,6 @@ pretty_assertions = "0.6"
|
|||||||
|
|
||||||
# Until github.com/rust-lang/cargo/pull/7333 makes it into stable,
|
# Until github.com/rust-lang/cargo/pull/7333 makes it into stable,
|
||||||
# this version-less dev-dependency will interfere with publishing
|
# this version-less dev-dependency will interfere with publishing
|
||||||
# to crates.io.
|
# to crates.io. In the meantime, we can publish with nighlty cargo.
|
||||||
[dev-dependencies.test-utilities]
|
[dev-dependencies.test-utilities]
|
||||||
path = "test-utilities"
|
path = "test-utilities"
|
||||||
|
2
justfile
2
justfile
@ -58,7 +58,7 @@ publish-check: lint clippy test
|
|||||||
git checkout Cargo.lock
|
git checkout Cargo.lock
|
||||||
|
|
||||||
publish: publish-check
|
publish: publish-check
|
||||||
cargo publish
|
cargo +nightly publish
|
||||||
git tag -a {{version}} -m 'Release {{version}}'
|
git tag -a {{version}} -m 'Release {{version}}'
|
||||||
git push github {{version}}
|
git push github {{version}}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user