Skip to content

Commit

Permalink
chore(releng): bump version to v0.1.1 (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
futursolo authored Jan 15, 2023
1 parent a24d7cb commit 821c98c
Show file tree
Hide file tree
Showing 11 changed files with 139 additions and 186 deletions.
287 changes: 120 additions & 167 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions crates/stctl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stctl"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.66"
repository = "https://github.com/futursolo/stellation"
Expand Down Expand Up @@ -36,4 +36,4 @@ tokio-stream = { version = "0.1.11", features = ["sync"] }
webbrowser = "0.8.4"

# Stellation Components
stellation-core = { version = "0.1.0", path = "../stellation-core" }
stellation-core = { version = "0.1.1", path = "../stellation-core" }
6 changes: 3 additions & 3 deletions crates/stellation-backend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stellation-backend"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.66"
repository = "https://github.com/futursolo/stellation"
Expand All @@ -26,8 +26,8 @@ rand = "0.8.5"
lol_html = "0.3.2"

# Stellation Components
stellation-bridge = { version = "0.1.0", path = "../stellation-bridge", features = ["resolvable"] }
stellation-core = { version = "0.1.0", path = "../stellation-core" }
stellation-bridge = { version = "0.1.1", path = "../stellation-bridge", features = ["resolvable"] }
stellation-core = { version = "0.1.1", path = "../stellation-core" }

# Yew / Component Related
yew = { version = "0.20", features = ["ssr"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/stellation-bridge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stellation-bridge"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.66"
repository = "https://github.com/futursolo/stellation"
Expand Down
2 changes: 1 addition & 1 deletion crates/stellation-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stellation-core"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.66"
repository = "https://github.com/futursolo/stellation"
Expand Down
4 changes: 2 additions & 2 deletions crates/stellation-frontend/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stellation-frontend"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.66"
repository = "https://github.com/futursolo/stellation"
Expand All @@ -23,7 +23,7 @@ tracing-web = "0.1.2"
tracing-subscriber = { version = "0.3.16", default-features = false, features = ["time", "std", "fmt", "ansi"] }

# Stellation Components
stellation-bridge = { version = "0.1.0", path = "../stellation-bridge" }
stellation-bridge = { version = "0.1.1", path = "../stellation-bridge" }

[dependencies.web-sys]
version = "0.3"
Expand Down
12 changes: 6 additions & 6 deletions crates/stellation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stellation"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
rust-version = "1.66"
repository = "https://github.com/futursolo/stellation"
Expand All @@ -15,8 +15,8 @@ homepage = "https://github.com/futursolo/stellation"
license = "MIT OR Apache-2.0"

[dependencies]
stellation-core = { version = "0.1.0", path = "../stellation-core" }
stellation-frontend = { version = "0.1.0", path = "../stellation-frontend" }
stellation-backend = { version = "0.1.0", path = "../stellation-backend" }
stellation-bridge = { version = "0.1.0", path = "../stellation-bridge" }
stctl = { version = "0.1.0", path = "../stctl" }
stellation-core = { version = "0.1.1", path = "../stellation-core" }
stellation-frontend = { version = "0.1.1", path = "../stellation-frontend" }
stellation-backend = { version = "0.1.1", path = "../stellation-backend" }
stellation-bridge = { version = "0.1.1", path = "../stellation-bridge" }
stctl = { version = "0.1.1", path = "../stctl" }
2 changes: 1 addition & 1 deletion examples/fullstack/api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
stellation-bridge = { version = "0.1.0", path = "../../../crates/stellation-bridge" }
stellation-bridge = { version = "0.1.1", path = "../../../crates/stellation-bridge" }
time = { version = "0.3", features = ["wasm-bindgen", "serde-human-readable"] }
serde = { version = "1", features = ["derive"] }
async-trait = "0.1.61"
Expand Down
2 changes: 1 addition & 1 deletion examples/fullstack/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
stellation-frontend = { version = "0.1.0", path = "../../../crates/stellation-frontend" }
stellation-frontend = { version = "0.1.1", path = "../../../crates/stellation-frontend" }
yew = "0.20.0"
gloo = "0.8"

Expand Down
2 changes: 1 addition & 1 deletion examples/fullstack/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ publish = false

[dependencies]
anyhow = "1"
stellation-backend = { version = "0.1.0", path = "../../../crates/stellation-backend", features = ["cli"] }
stellation-backend = { version = "0.1.1", path = "../../../crates/stellation-backend", features = ["cli"] }
tokio = { version = "1.24.1", features = ["full"] }
tracing = { version = "0.1.37" }
yew = "0.20.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/fullstack/view/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
[dependencies]
yew = { version = "0.20.0" }
example-fullstack-api = { path = "../api" }
stellation-bridge = { version = "0.1.0", path = "../../../crates/stellation-bridge" }
stellation-bridge = { version = "0.1.1", path = "../../../crates/stellation-bridge" }
time = { version = "0.3", features = ["wasm-bindgen", "serde-human-readable", "macros"] }
tracing = "0.1.37"
bounce = { version = "0.6.0", features = ["helmet"] }
Expand Down

0 comments on commit 821c98c

Please sign in to comment.