Browse Source

Release dioxus-core v0.2.1, dioxus-core-macro v0.2.1, dioxus-html v0.2.1, dioxus-interpreter-js v0.2.1, dioxus-desktop v0.2.3, dioxus-hooks v0.2.1, dioxus-liveview v0.1.0, dioxus-native-core v0.2.0, dioxus-native-core-macro v0.2.0, dioxus-router v0.2.3, dioxus-ssr v0.2.1, dioxus-tui v0.2.2, dioxus-web v0.2.1, fermi v0.2.1, dioxus v0.2.4

Jonathan Kelley 3 years ago
parent
commit
3febd42588

+ 13 - 13
Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus"
-version = "0.2.3"
+version = "0.2.4"
 authors = ["Jonathan Kelley"]
 edition = "2021"
 description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
@@ -12,19 +12,19 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
 rust-version = "1.56.0"
 
 [dependencies]
-dioxus-core = { path = "./packages/core", version = "^0.2.0" }
-dioxus-html = { path = "./packages/html", version = "^0.2.0", optional = true }
-dioxus-core-macro = { path = "./packages/core-macro", version = "^0.2.0", optional = true }
-dioxus-hooks = { path = "./packages/hooks", version = "^0.2.0", optional = true }
-fermi = { path = "./packages/fermi", version = "^0.2.0", optional = true }
+dioxus-core = { path = "./packages/core", version = "^0.2.1" }
+dioxus-html = { path = "./packages/html", version = "^0.2.1", optional = true }
+dioxus-core-macro = { path = "./packages/core-macro", version = "^0.2.1", optional = true }
+dioxus-hooks = { path = "./packages/hooks", version = "^0.2.1", optional = true }
+fermi = { path = "./packages/fermi", version = "^0.2.1", optional = true }
 
-dioxus-web = { path = "./packages/web", version = "^0.2.0", optional = true }
-dioxus-desktop = { path = "./packages/desktop", version = "^0.2.2", optional = true }
-dioxus-ssr = { path = "./packages/ssr", version = "^0.2.0", optional = true }
+dioxus-web = { path = "./packages/web", version = "^0.2.1", optional = true }
+dioxus-desktop = { path = "./packages/desktop", version = "^0.2.3", optional = true }
+dioxus-ssr = { path = "./packages/ssr", version = "^0.2.1", optional = true }
 
-dioxus-router = { path = "./packages/router", version = "^0.2.1", optional = true }
-dioxus-interpreter-js = { path = "./packages/interpreter", version = "^0.2.0", optional = true }
-dioxus-tui = { path = "./packages/tui", version = "^0.2.0", optional = true }
+dioxus-router = { path = "./packages/router", version = "^0.2.3", optional = true }
+dioxus-interpreter-js = { path = "./packages/interpreter", version = "^0.2.1", optional = true }
+dioxus-tui = { path = "./packages/tui", version = "^0.2.2", optional = true }
 
 dioxus-liveview = { path = "./packages/liveview", optional = true }
 
@@ -97,4 +97,4 @@ harness = false
 
 [[bench]]
 name = "tui_update"
-harness = false
+harness = false

+ 1 - 1
packages/core-macro/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-core-macro"
-version = "0.2.0"
+version = "0.2.1"
 authors = ["Jonathan Kelley"]
 edition = "2021"
 description = "Core macro for Dioxus Virtual DOM"

+ 1 - 1
packages/core/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-core"
-version = "0.2.0"
+version = "0.2.1"
 authors = ["Jonathan Kelley"]
 edition = "2018"
 description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"

+ 4 - 4
packages/desktop/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-desktop"
-version = "0.2.2"
+version = "0.2.3"
 authors = ["Jonathan Kelley"]
 edition = "2018"
 description = "Dioxus VirtualDOM renderer for a remote webview instance"
@@ -12,9 +12,9 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "../core", version = "^0.2.0", features = ["serialize"] }
-dioxus-html = { path = "../html", features = ["serialize"], version = "^0.2.0" }
-dioxus-interpreter-js = { path = "../interpreter", version = "^0.2.0" }
+dioxus-core = { path = "../core", version = "^0.2.1", features = ["serialize"] }
+dioxus-html = { path = "../html", features = ["serialize"], version = "^0.2.1" }
+dioxus-interpreter-js = { path = "../interpreter", version = "^0.2.1" }
 
 serde = "1.0.136"
 serde_json = "1.0.79"

+ 2 - 2
packages/fermi/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "fermi"
-version = "0.2.0"
+version = "0.2.1"
 authors = ["Jonathan Kelley"]
 edition = "2018"
 description = "Global state management for Dioxus"
@@ -13,7 +13,7 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "../core", version = "^0.2.0" }
+dioxus-core = { path = "../core", version = "^0.2.1" }
 im-rc = { version = "15.0.0", features = ["serde"] }
 log = "0.4.14"
 

+ 3 - 3
packages/hooks/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-hooks"
-version = "0.2.0"
+version = "0.2.1"
 authors = ["Jonathan Kelley"]
 edition = "2018"
 description = "Dioxus VirtualDOM renderer for a remote webview instance"
@@ -12,11 +12,11 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "../../packages/core", version = "^0.2.0" }
+dioxus-core = { path = "../../packages/core", version = "^0.2.1" }
 futures-channel = "0.3.21"
 log = { version = "0.4" }
 
 
 [dev-dependencies]
 futures-util = { version = "0.3", default-features = false }
-dioxus-core = { path = "../../packages/core", version = "^0.2.0" }
+dioxus-core = { path = "../../packages/core", version = "^0.2.1" }

+ 3 - 3
packages/html/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-html"
-version = "0.2.0"
+version = "0.2.1"
 authors = ["Jonathan Kelley"]
 edition = "2018"
 description = "HTML Element pack for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
@@ -11,7 +11,7 @@ documentation = "https://docs.rs/dioxus"
 keywords = ["dom", "ui", "gui", "react", "wasm"]
 
 [dependencies]
-dioxus-core = { path = "../core", version = "^0.2.0" }
+dioxus-core = { path = "../core", version = "^0.2.1" }
 serde = { version = "1", features = ["derive"], optional = true }
 serde_repr = { version = "0.1", optional = true }
 wasm-bindgen = { version = "0.2.79", optional = true }
@@ -38,4 +38,4 @@ features = [
 [features]
 default = []
 serialize = ["serde", "serde_repr"]
-wasm-bind = ["web-sys", "wasm-bindgen"]
+wasm-bind = ["web-sys", "wasm-bindgen"]

+ 1 - 1
packages/interpreter/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-interpreter-js"
-version = "0.2.0"
+version = "0.2.1"
 edition = "2018"
 authors = ["Jonathan Kelley"]
 description = "JS Intepreter for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"

+ 2 - 2
packages/liveview/Cargo.toml

@@ -23,8 +23,8 @@ serde = { version = "1.0.136", features = ["derive"] }
 serde_json = "1.0.79"
 tokio-util = { version = "0.7.0", features = ["full"] }
 
-dioxus-html = { path = "../html", features = ["serialize"], version = "^0.2.0" }
-dioxus-core = { path = "../core", features = ["serialize"], version = "^0.2.0" }
+dioxus-html = { path = "../html", features = ["serialize"], version = "^0.2.1" }
+dioxus-core = { path = "../core", features = ["serialize"], version = "^0.2.1" }
 
 
 # warp

+ 1 - 1
packages/mobile/Cargo.toml

@@ -12,7 +12,7 @@ license = "MIT/Apache-2.0"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-desktop = { path = "../desktop", version = "^0.2.0" }
+dioxus-desktop = { path = "../desktop", version = "^0.2.3" }
 
 [lib]
 doctest = false

+ 4 - 4
packages/native-core-macro/Cargo.toml

@@ -13,10 +13,10 @@ quote = "1.0"
 dioxus-native-core = { path = "../native-core" }
 
 [dev-dependencies]
-dioxus-core = { path = "../core", version = "^0.2.0" }
-dioxus-html = { path = "../html", version = "^0.2.0" }
-dioxus-core-macro = { path = "../core-macro", version = "^0.2.0" }
+dioxus-core = { path = "../core", version = "^0.2.1" }
+dioxus-html = { path = "../html", version = "^0.2.1" }
+dioxus-core-macro = { path = "../core-macro", version = "^0.2.1" }
 
 smallvec = "1.6"
 fxhash = "0.2"
-anymap = "0.12.1"
+anymap = "0.12.1"

+ 3 - 3
packages/native-core/Cargo.toml

@@ -7,9 +7,9 @@ repository = "https://github.com/DioxusLabs/dioxus/"
 homepage = "https://dioxuslabs.com"
 
 [dependencies]
-dioxus-core = { path = "../core", version = "^0.2.0" }
-dioxus-html = { path = "../html", version = "^0.2.0" }
-dioxus-core-macro = { path = "../core-macro", version = "^0.2.0" }
+dioxus-core = { path = "../core", version = "^0.2.1" }
+dioxus-html = { path = "../html", version = "^0.2.1" }
+dioxus-core-macro = { path = "../core-macro", version = "^0.2.1" }
 
 stretch2 = "0.4.2"
 smallvec = "1.6"

+ 4 - 4
packages/router/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-router"
-version = "0.2.2"
+version = "0.2.3"
 edition = "2018"
 description = "Cross-platform router for Dioxus apps"
 license = "MIT/Apache-2.0"
@@ -11,9 +11,9 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "../core", version = "^0.2.0", default-features = false }
-dioxus-html = { path = "../html", version = "^0.2.0", default-features = false }
-dioxus-core-macro = { path = "../core-macro", version = "^0.2.0" }
+dioxus-core = { path = "../core", version = "^0.2.1", default-features = false }
+dioxus-html = { path = "../html", version = "^0.2.1", default-features = false }
+dioxus-core-macro = { path = "../core-macro", version = "^0.2.1" }
 futures-channel = "0.3.21"
 url = { version = "2.2.2", default-features = false }
 

+ 2 - 2
packages/ssr/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-ssr"
-version = "0.2.0"
+version = "0.2.1"
 authors = ["Jonathan Kelley"]
 edition = "2018"
 description = "Dioxus render-to-string"
@@ -13,7 +13,7 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "../core", version = "^0.2.0", features = ["serialize"] }
+dioxus-core = { path = "../core", version = "^0.2.1", features = ["serialize"] }
 
 
 [dev-dependencies]

+ 3 - 3
packages/tui/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-tui"
-version = "0.2.1"
+version = "0.2.2"
 authors = ["Jonathan Kelley, @dementhos"]
 edition = "2021"
 description = "TUI-based renderer for Dioxus"
@@ -13,8 +13,8 @@ license = "MIT/Apache-2.0"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus-core = { path = "../core", version = "^0.2.0" }
-dioxus-html = { path = "../html", version = "^0.2.0" }
+dioxus-core = { path = "../core", version = "^0.2.1" }
+dioxus-html = { path = "../html", version = "^0.2.1" }
 dioxus-native-core = { path = "../native-core", version = "^0.2.0" }
 dioxus-native-core-macro = { path = "../native-core-macro", version = "^0.2.0" }
 

+ 4 - 4
packages/web/Cargo.toml

@@ -1,6 +1,6 @@
 [package]
 name = "dioxus-web"
-version = "0.2.0"
+version = "0.2.1"
 authors = ["Jonathan Kelley"]
 edition = "2018"
 description = "Dioxus VirtualDOM renderer for the web browser using websys"
@@ -11,9 +11,9 @@ documentation = "https://dioxuslabs.com"
 keywords = ["dom", "ui", "gui", "react", "wasm"]
 
 [dependencies]
-dioxus-core = { path = "../core", version = "^0.2.0" }
-dioxus-html = { path = "../html", version = "^0.2.0", features = ["wasm-bind"] }
-dioxus-interpreter-js = { path = "../interpreter", version = "^0.2.0", features = [
+dioxus-core = { path = "../core", version = "^0.2.1" }
+dioxus-html = { path = "../html", version = "^0.2.1", features = ["wasm-bind"] }
+dioxus-interpreter-js = { path = "../interpreter", version = "^0.2.1", features = [
     "web",
 ] }