-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a script to aid with publishing.
- Loading branch information
1 parent
f7cbe43
commit 255ba29
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#/bin/sh | ||
|
||
# If the versions haven't changed, this'll just error, but we'll just keep chugging. | ||
# That's fine. That said, just bump the version numbers when you'd like to publish. | ||
|
||
cargo publish --manifest-path src/core; | ||
cargo publish --manifest-path src/protocol; | ||
cargo publish --manifest-path src/net; | ||
cargo publish --manifest-path src/client; | ||
cargo publish --manifest-path src/server; | ||
cargo publish --manifest-path .; |