Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
neonphog committed May 8, 2024
1 parent 773c704 commit 705c73a
Showing 9 changed files with 26 additions and 19 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -14,12 +14,12 @@ panic = "abort"

[workspace.dependencies]
# workspace member deps
sbd-bench = { version = "0.0.1-alpha", path = "rust/sbd-bench" }
sbd-client = { version = "0.0.1-alpha", path = "rust/sbd-client" }
sbd-e2e-crypto-client = { version = "0.0.1-alpha", path = "rust/sbd-e2e-crypto-client" }
sbd-o-bahn-client-tester = { version = "0.0.1-alpha", path = "rust/sbd-o-bahn-client-tester" }
sbd-o-bahn-server-tester = { version = "0.0.1-alpha", path = "rust/sbd-o-bahn-server-tester" }
sbd-server = { version = "0.0.1-alpha", path = "rust/sbd-server" }
sbd-bench = { version = "0.0.2-alpha", path = "rust/sbd-bench" }
sbd-client = { version = "0.0.2-alpha", path = "rust/sbd-client" }
sbd-e2e-crypto-client = { version = "0.0.2-alpha", path = "rust/sbd-e2e-crypto-client" }
sbd-o-bahn-client-tester = { version = "0.0.2-alpha", path = "rust/sbd-o-bahn-client-tester" }
sbd-o-bahn-server-tester = { version = "0.0.2-alpha", path = "rust/sbd-o-bahn-server-tester" }
sbd-server = { version = "0.0.2-alpha", path = "rust/sbd-server" }
# crate deps
anstyle = "1.0.6"
base64 = "0.22.0"
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# sbd Makefile

.PHONY: all publish-all publish test static
.PHONY: all publish-all publish bump test static

SHELL = /usr/bin/env sh -eu

@@ -46,6 +46,13 @@ publish:
git tag -a "$(crate)-$${VER}" -m "$(crate)-$${VER}"; \
git push --tags;

bump:
@if [ "$(ver)x" = "x" ]; then \
echo "USAGE: make bump ver=0.0.2-alpha"; \
exit 1; \
fi
sed -i 's/^\(sbd[^=]*= { \|\)version = "[^"]*"/\1version = "$(ver)"/g' $$(find . -name Cargo.toml)

test: static
cargo build --all-targets
RUST_BACKTRACE=1 cargo test
2 changes: 1 addition & 1 deletion rust/sbd-bench/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sbd-bench"
version = "0.0.1-alpha"
version = "0.0.2-alpha"
edition = "2021"

[dependencies]
2 changes: 1 addition & 1 deletion rust/sbd-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sbd-client"
version = "0.0.1-alpha"
version = "0.0.2-alpha"
description = "simple websocket-based message relay client"
license = "MIT OR Apache-2.0"
repository = "https://github.com/holochain/sbd"
2 changes: 1 addition & 1 deletion rust/sbd-e2e-crypto-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ documentation = "https://docs.rs/sbd-e2e-crypto-client"
authors = ["Holochain Core Dev Team <[email protected]>"]
keywords = ["holochain", "holo", "p2p", "networking"]
categories = ["network-programming"]
version = "0.0.1-alpha"
version = "0.0.2-alpha"
edition = "2021"

[dependencies]
2 changes: 1 addition & 1 deletion rust/sbd-o-bahn-client-tester/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sbd-o-bahn-client-tester"
version = "0.0.1-alpha"
version = "0.0.2-alpha"
description = "simple websocket-based message relay client tester"
license = "MIT OR Apache-2.0"
repository = "https://github.com/holochain/sbd"
2 changes: 1 addition & 1 deletion rust/sbd-o-bahn-server-tester/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sbd-o-bahn-server-tester"
version = "0.0.1-alpha"
version = "0.0.2-alpha"
description = "simple websocket-based message relay server tester"
license = "MIT OR Apache-2.0"
repository = "https://github.com/holochain/sbd"
2 changes: 1 addition & 1 deletion rust/sbd-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sbd-server"
version = "0.0.1-alpha"
version = "0.0.2-alpha"
description = "simple websocket-based message relay server"
license = "MIT OR Apache-2.0"
repository = "https://github.com/holochain/sbd"

0 comments on commit 705c73a

Please sign in to comment.