Skip to content

Commit a72e72f

Browse files
committed
bump to rc-1
1 parent e268350 commit a72e72f

8 files changed

Lines changed: 17 additions & 17 deletions

File tree

.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/cargo-binstall@v1.10.13
26-
- run: cargo binstall dioxus-cli@0.7.0-alpha.3 --force --no-confirm
26+
- run: cargo binstall dioxus-cli@0.7.0-rc.1 --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/prompt-small.md

Lines changed: 1 addition & 1 deletion
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-alpha.3" }
11+
dioxus = { version = "0.7.0-rc.1" }
1212

1313
[features]
1414
default = ["web"]

Bare-Bones/prompt.md

Lines changed: 4 additions & 4 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-alpha.3" }
11+
dioxus = { version = "0.7.0-rc.1" }
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-alpha.3", features = ["router"] }
234+
dioxus = { version = "0.7.0-rc.1", 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-alpha.3", features = ["fullstack"] }
242+
dioxus = { version = "0.7.0-rc.1", features = ["fullstack"] }
243243
```
244244

245245
## Server Functions
@@ -262,4 +262,4 @@ Hydration is the process of making a server-rendered HTML page interactive on th
262262
The initial UI rendered by the component on the client must be identical to the UI rendered on the server.
263263

264264
* Use the `use_server_future` hook instead of `use_resource`. It runs the future on the server, serializes the result, and sends it to the client, ensuring the client has the data immediately for its first render.
265-
* Any code that relies on browser-specific APIs (like accessing `localStorage`) must be run *after* hydration. Place this code inside a `use_effect` hook.
265+
* Any code that relies on browser-specific APIs (like accessing `localStorage`) must be run *after* hydration. Place this code inside a `use_effect` hook.

Jumpstart/prompt-small.md

Lines changed: 1 addition & 1 deletion
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-alpha.3" }
11+
dioxus = { version = "0.7.0-rc.1" }
1212

1313
[features]
1414
default = ["web"]

Jumpstart/prompt.md

Lines changed: 4 additions & 4 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-alpha.3" }
11+
dioxus = { version = "0.7.0-rc.1" }
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-alpha.3", features = ["router"] }
234+
dioxus = { version = "0.7.0-rc.1", 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-alpha.3", features = ["fullstack"] }
242+
dioxus = { version = "0.7.0-rc.1", features = ["fullstack"] }
243243
```
244244

245245
## Server Functions
@@ -262,4 +262,4 @@ Hydration is the process of making a server-rendered HTML page interactive on th
262262
The initial UI rendered by the component on the client must be identical to the UI rendered on the server.
263263

264264
* Use the `use_server_future` hook instead of `use_resource`. It runs the future on the server, serializes the result, and sends it to the client, ensuring the client has the data immediately for its first render.
265-
* Any code that relies on browser-specific APIs (like accessing `localStorage`) must be run *after* hydration. Place this code inside a `use_effect` hook.
265+
* Any code that relies on browser-specific APIs (like accessing `localStorage`) must be run *after* hydration. Place this code inside a `use_effect` hook.

Workspace/prompt-small.md

Lines changed: 1 addition & 1 deletion
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-alpha.3" }
11+
dioxus = { version = "0.7.0-rc.1" }
1212

1313
[features]
1414
default = ["web"]

Workspace/prompt.md

Lines changed: 4 additions & 4 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-alpha.3" }
11+
dioxus = { version = "0.7.0-rc.1" }
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-alpha.3", features = ["router"] }
234+
dioxus = { version = "0.7.0-rc.1", 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-alpha.3", features = ["fullstack"] }
242+
dioxus = { version = "0.7.0-rc.1", features = ["fullstack"] }
243243
```
244244

245245
## Server Functions
@@ -262,4 +262,4 @@ Hydration is the process of making a server-rendered HTML page interactive on th
262262
The initial UI rendered by the component on the client must be identical to the UI rendered on the server.
263263

264264
* Use the `use_server_future` hook instead of `use_resource`. It runs the future on the server, serializes the result, and sends it to the client, ensuring the client has the data immediately for its first render.
265-
* Any code that relies on browser-specific APIs (like accessing `localStorage`) must be run *after* hydration. Place this code inside a `use_effect` hook.
265+
* Any code that relies on browser-specific APIs (like accessing `localStorage`) must be run *after* hydration. Place this code inside a `use_effect` hook.

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-alpha.3\"");
4+
variable::set(DIOXUS_DEP_SRC_VAR, "version = \"0.7.0-rc.1\"");
55

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

0 commit comments

Comments
 (0)