Skip to content

Commit

Permalink
publish everything!
Browse files Browse the repository at this point in the history
this will fill in the badges on the homepage and make it easier to reason about individual crate api changes
  • Loading branch information
anp committed Nov 20, 2019
1 parent e6f677f commit 5d2d057
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 18 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moxie"
version = "0.1.1-alpha.1-pre"
version = "0.2.0"
edition = "2018"
authors = ["Adam Perry <adam.n.perry@gmail.com>"]
license = "MIT/Apache-2.0"
Expand All @@ -20,11 +20,11 @@ version = "0.9.0"
path = "illicit"

[dependencies.mox]
version = "0.2.0-pre"
version = "0.2.0"
path = "mox"

[dependencies.topo]
version = "0.9.0-pre"
version = "0.9.0"
path = "topo"

[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions dom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "moxie-dom"
version = "0.1.1-alpha.1-pre"
version = "0.2.0"
authors = ["Adam Perry <adam.n.perry@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down Expand Up @@ -30,10 +30,10 @@ rsdom = ["augdom/rsdom"]
webdom = ["augdom/webdom", "raf"]

[dependencies]
augdom = { path = "augdom", version = "0.1.0-pre" }
augdom = { path = "augdom", version = "0.1.0" }
illicit = { path = "../illicit", version = "0.9.0" }
moxie = { path = "../", version = "0.1.1-alpha.0" }
moxie = { path = "../", version = "0.2.0" }
scopeguard = "1"

# web-only
raf = { path = "raf", version = "0.1.0-pre", optional = true }
raf = { path = "raf", version = "0.1.0", optional = true }
2 changes: 1 addition & 1 deletion dom/augdom/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "augdom"
version = "0.1.0-pre"
version = "0.1.0"
authors = ["Adam Perry <adam.n.perry@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions dom/examples/drivertest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ authors = ["Adam Perry <adam.n.perry@gmail.com>"]
edition = "2018"

[dependencies]
moxie = { path = "../../../", version = "0.1.1-alpha.0" }
moxie-dom = { path = "../../", version = "0.1.1-alpha.0", features = ["rsdom"] }
moxie = { path = "../../../" }
moxie-dom = { path = "../../", features = ["rsdom"] }
typed-html = "0.2.1"
wasm-bindgen = "0.2.51"
wasm-bindgen-test = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion dom/examples/ssr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ augdom = { path = "../../augdom" }
gotham = "0.4.0"
gotham_derive = "0.4.0"
hyper = "0.12"
moxie = { path = "../../../", version = "0.1.1-alpha.0" }
moxie = { path = "../../../" }
serde = "1"
serde_derive = "1"
topo = { path = "../../../topo" }
Expand Down
5 changes: 2 additions & 3 deletions dom/raf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
[package]
name = "raf"
version = "0.1.0-pre"
version = "0.1.0"
edition = "2018"
authors = ["Adam Perry <adam.n.perry@gmail.com>"]
license = "MIT/Apache-2.0"
description = "browser event loop scheduler using requestAnimationFrame"
repository = "https://github.com/anp/moxie"


[dependencies]
futures-preview = "0.3.0-alpha.18"
futures = "0.3"
wasm-bindgen = "0.2.48"
web-sys = { version = "0.3.28", features = ["Window"] }
2 changes: 1 addition & 1 deletion mox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mox"
version = "0.2.0-pre"
version = "0.2.0"
edition = "2018"
authors = ["Adam Perry <adam.n.perry@gmail.com>"]
license = "MIT/Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions topo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "topo"
version = "0.9.0-pre"
version = "0.9.0"
authors = ["Adam Perry <adam.n.perry@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand All @@ -11,7 +11,7 @@ include = ["Cargo.toml", "src/**/*.rs", "benches/**/*.rs", "tests/**/*.rs"]

[dependencies]
illicit = { path = "../illicit", version = "0.9.0" }
topo-macro = { path = "macro", version = "0.8.1" }
topo-macro = { path = "macro", version = "0.8.2" }

[dev-dependencies]
criterion = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion topo/macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "topo-macro"
version = "0.8.1"
version = "0.8.2"
authors = ["Adam Perry <adam.n.perry@gmail.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down

0 comments on commit 5d2d057

Please sign in to comment.