ソースを参照

fix: versions and readme

Jonathan Kelley 2 年 前
コミット
a0961583d1

+ 2 - 2
packages/dioxus/Cargo.toml

@@ -1,7 +1,7 @@
 [package]
 name = "dioxus"
-version = "0.3.0"
-authors = ["Jonathan Kelley"]
+version = "0.3.1"
+authors = ["Jonathan Kelley", "Dioxus Labs", "ealmloff"]
 edition = "2021"
 description = "Core functionality for Dioxus - a concurrent renderer-agnostic Virtual DOM for interactive user experiences"
 license = "MIT OR Apache-2.0"

+ 0 - 0
notes/README.md → packages/dioxus/README.md


+ 1 - 1
packages/fermi/Cargo.toml

@@ -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.1" }
+dioxus-core = { path = "../core", version = "^0.3.0" }
 im-rc = { version = "15.0.0", features = ["serde"] }
 log = "0.4.14"
 

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

@@ -11,9 +11,9 @@ keywords = ["dom", "ui", "gui", "react", "wasm"]
 
 
 [dependencies]
-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" }
+dioxus-core = { path = "../core", version = "^0.3.0" }
+dioxus-html = { path = "../html", version = "^0.3.0" }
+dioxus-core-macro = { path = "../core-macro", version = "^0.3.0" }
 
 taffy = "0.2.1"
 smallvec = "1.6"
@@ -29,4 +29,4 @@ lightningcss = "1.0.0-alpha.39"
 
 [dev-dependencies]
 rand = "0.8.5"
-dioxus = { path = "../dioxus", version = "^0.2.1" }
+dioxus = { path = "../dioxus", version = "^0.3.0" }

+ 3 - 3
packages/tui/Cargo.toml

@@ -13,9 +13,9 @@ license = "MIT/Apache-2.0"
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-dioxus = { path = "../dioxus", version = "^0.2.1" }
-dioxus-core = { path = "../core", version = "^0.2.1" }
-dioxus-html = { path = "../html", version = "^0.2.1" }
+dioxus = { path = "../dioxus", version = "^0.3.0" }
+dioxus-core = { path = "../core", version = "^0.3.0" }
+dioxus-html = { path = "../html", version = "^0.3.0" }
 dioxus-native-core = { path = "../native-core", version = "^0.2.0" }
 dioxus-native-core-macro = { path = "../native-core-macro", version = "^0.2.0" }