Skip to content

Commit 182e355

Browse files
committed
bump to 0.7
1 parent c04d2d3 commit 182e355

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/checkout@v4
2424
- uses: dtolnay/rust-toolchain@stable
2525
- uses: cargo-bins/[email protected]
26-
- run: cargo binstall [email protected]-rc.4 --force --no-confirm
26+
- run: cargo binstall [email protected] --force --no-confirm
2727
- run: sudo apt update
2828
- run: sudo apt install expect libwebkit2gtk-4.1-dev build-essential curl wget file libxdo-dev libssl-dev libayatana-appindicator3-dev librsvg2-dev
2929

Bare-Bones/AGENTS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can add Dioxus to your `Cargo.toml` like this:
88

99
```toml
1010
[dependencies]
11-
dioxus = { version = "0.7.0-rc.4" }
11+
dioxus = { version = "0.7.0" }
1212

1313
[features]
1414
default = ["web", "webview", "server"]
@@ -231,15 +231,15 @@ fn App() -> Element {
231231
```
232232

233233
```toml
234-
dioxus = { version = "0.7.0-rc.4", features = ["router"] }
234+
dioxus = { version = "0.7.0", features = ["router"] }
235235
```
236236

237237
# Fullstack
238238

239239
Fullstack enables server rendering and ipc calls. It uses Cargo features (`server` and a client feature like `web`) to split the code into a server and client binaries.
240240

241241
```toml
242-
dioxus = { version = "0.7.0-rc.4", features = ["fullstack"] }
242+
dioxus = { version = "0.7.0", features = ["fullstack"] }
243243
```
244244

245245
## Server Functions

Jumpstart/AGENTS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can add Dioxus to your `Cargo.toml` like this:
88

99
```toml
1010
[dependencies]
11-
dioxus = { version = "0.7.0-rc.4" }
11+
dioxus = { version = "0.7.0" }
1212

1313
[features]
1414
default = ["web", "webview", "server"]
@@ -231,15 +231,15 @@ fn App() -> Element {
231231
```
232232

233233
```toml
234-
dioxus = { version = "0.7.0-rc.4", features = ["router"] }
234+
dioxus = { version = "0.7.0", features = ["router"] }
235235
```
236236

237237
# Fullstack
238238

239239
Fullstack enables server rendering and ipc calls. It uses Cargo features (`server` and a client feature like `web`) to split the code into a server and client binaries.
240240

241241
```toml
242-
dioxus = { version = "0.7.0-rc.4", features = ["fullstack"] }
242+
dioxus = { version = "0.7.0", features = ["fullstack"] }
243243
```
244244

245245
## Server Functions

Workspace/AGENTS.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ You can add Dioxus to your `Cargo.toml` like this:
88

99
```toml
1010
[dependencies]
11-
dioxus = { version = "0.7.0-rc.4" }
11+
dioxus = { version = "0.7.0" }
1212

1313
[features]
1414
default = ["web", "webview", "server"]
@@ -231,15 +231,15 @@ fn App() -> Element {
231231
```
232232

233233
```toml
234-
dioxus = { version = "0.7.0-rc.4", features = ["router"] }
234+
dioxus = { version = "0.7.0", features = ["router"] }
235235
```
236236

237237
# Fullstack
238238

239239
Fullstack enables server rendering and ipc calls. It uses Cargo features (`server` and a client feature like `web`) to split the code into a server and client binaries.
240240

241241
```toml
242-
dioxus = { version = "0.7.0-rc.4", features = ["fullstack"] }
242+
dioxus = { version = "0.7.0", features = ["fullstack"] }
243243
```
244244

245245
## Server Functions

common.rhai

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Dioxus version. This only needs changed to update all templates.
22
// You can change this in development to be `path = "abc/"` or `git = "xyz"` for local development.
33
const DIOXUS_DEP_SRC_VAR = "dioxus_dep_src";
4-
variable::set(DIOXUS_DEP_SRC_VAR, "version = \"0.7.0-rc.4\"");
4+
variable::set(DIOXUS_DEP_SRC_VAR, "version = \"0.7.0\"");
55

66
// These are variables that are used in liquid
77
const NEEDS_DEFAULT_PLATFORM_VAR = "needs_default_platform";

0 commit comments

Comments
 (0)