Skip to content

Commit a415c24

Browse files
committed
bump alpha versions to real versions
1 parent 95510e9 commit a415c24

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

cookbook/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2018"
99
[dependencies]
1010
doc-comment = "^0.3"
1111
futures = "^0.3"
12-
mogwai-dom = { path = "../crates/mogwai-dom", version = "^0.1.0-alpha.1" }
12+
mogwai-dom = { path = "../crates/mogwai-dom", version = "^0.1.0" }
1313

1414
[dependencies.web-sys]
1515
version = "^0.3"

cookbook/book.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ src = "src"
66
title = "Cooking with Mogwai"
77

88
[preprocessor.variables.variables]
9-
mogwai_docs_version = "0.6.0-alpha.1"
10-
mogwai_dom_docs_version = "0.1.0-alpha.1"
9+
mogwai_docs_version = "0.6.0"
10+
mogwai_dom_docs_version = "0.1.0"
1111
cookbookroot = ""
1212

1313
[output.html]

crates/mogwai-dom/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mogwai-dom"
3-
version = "0.1.0-alpha.1"
3+
version = "0.1.0"
44
edition = "2021"
55
authors = ["Schell Scivally <[email protected]>"]
66
license = "MIT"
@@ -21,8 +21,8 @@ async-executor = "1.5.0"
2121
async-lock = "2.6.0"
2222
futures = "^0.3"
2323
log = "^0.4"
24-
mogwai = { version = "0.6.0-alpha.1", path = "../mogwai" }
25-
mogwai-macros = { version = "0.1.0-alpha", path = "../mogwai-macros", features = ["dom"] }
24+
mogwai = { version = "0.6.0", path = "../mogwai" }
25+
mogwai-macros = { version = "0.1.0", path = "../mogwai-macros", features = ["dom"] }
2626
send_wrapper = "^0.6"
2727
serde = { version = "^1.0", features = ["derive"] }
2828
serde_json = "^1.0"

crates/mogwai-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mogwai-macros"
3-
version = "0.1.0-alpha"
3+
version = "0.1.0"
44
authors = ["Schell Scivally <[email protected]>"]
55
edition = "2018"
66
readme = "README.md"

crates/mogwai/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mogwai"
3-
version = "0.6.0-alpha.1"
3+
version = "0.6.0"
44
edition = "2021"
55
authors = ["Schell Scivally <[email protected]>"]
66
license = "MIT"
@@ -25,7 +25,7 @@ console_log = "^0.1"
2525
futures-lite = { version = "1.12.0", default-features = false }
2626
lazy_static = "^1.4"
2727
log = "^0.4"
28-
mogwai-macros = { path = "../mogwai-macros", version = "0.1.0-alpha" }
28+
mogwai-macros = { path = "../mogwai-macros", version = "0.1.0" }
2929

3030
[target.'cfg(target_arch = "wasm32")'.dependencies]
3131
wasm-bindgen = "^0.2"

0 commit comments

Comments
 (0)