Skip to content

Commit 3975a75

Browse files
committed
Bump v0.4.0
1 parent ff109f5 commit 3975a75

13 files changed

Lines changed: 25 additions & 25 deletions

File tree

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ members = [
1818
resolver = "2"
1919

2020
[workspace.dependencies]
21-
gpui-component = { path = "crates/ui", version = "0.4.0-preview3" }
22-
gpui-component-macros = { path = "crates/macros", version = "0.4.0-preview3" }
23-
gpui-component-assets = { path = "crates/assets", version = "0.4.0-preview3" }
21+
gpui-component = { path = "crates/ui", version = "0.4.0" }
22+
gpui-component-macros = { path = "crates/macros", version = "0.4.0" }
23+
gpui-component-assets = { path = "crates/assets", version = "0.4.0" }
2424
story = { path = "crates/story" }
2525

2626
gpui = "0.2.2"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ GPUI and GPUI Component are still in development, so you need to add dependencie
3232

3333
```toml
3434
gpui = "0.2.2"
35-
gpui-component = "0.4.0-preview2"
35+
gpui-component = "0.4.0"
3636
```
3737

3838
### Basic Example
@@ -88,7 +88,7 @@ fn main() {
8888
GPUI Component has a `WebView` element based on [Wry](https://github.com/tauri-apps/wry). This is an optional feature, which you can enable with a feature flag.
8989

9090
```toml
91-
gpui-component = { version = "0.4.0-preview2", features = ["webview"] }
91+
gpui-component = { version = "0.4.0", features = ["webview"] }
9292
wry = { version = "0.53.3, package = "lb-wry" }
9393
```
9494

crates/assets/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ homepage = "https://longbridge.github.io/gpui-component"
99
repository = "https://github.com/longbridge/gpui-component"
1010
publish = true
1111
readme = "README.md"
12-
version = "0.4.0-preview3"
12+
version = "0.4.0"
1313

1414
[lib]
1515
doctest = false

crates/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
edition = "2021"
33
name = "gpui-component-macros"
44
description = "Macros for GPUI Component."
5-
version = "0.4.0-preview3"
5+
version = "0.4.0"
66
publish = true
77
license = "Apache-2.0"
88

crates/reqwest_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "reqwest_client"
3-
version = "0.4.0-preview3"
3+
version = "0.4.0"
44
publish = false
55
license = "Apache-2.0"
66
edition = "2024"

crates/story/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
edition = "2024"
33
name = "gpui-component-story"
44
publish = false
5-
version = "0.4.0-preview3"
5+
version = "0.4.0"
66

77
[features]
88
inspector = ["gpui-component/inspector"]

crates/ui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ homepage = "https://longbridge.github.io/gpui-component"
99
repository = "https://github.com/longbridge/gpui-component"
1010
publish = true
1111
readme = "../../README.md"
12-
version = "0.4.0-preview3"
12+
version = "0.4.0"
1313

1414
[lib]
1515
doctest = false

examples/app_assets/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ edition = "2021"
33
name = "app_assets"
44
description = "Example to load icons or images from assets folder."
55
publish = false
6-
version = "0.4.0-preview3"
6+
version = "0.4.0"
77

88
[dependencies]
99
anyhow.workspace = true

examples/dialog_overlay/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ edition = "2021"
33
name = "dialog_overlay"
44
description = "An example of using gpui-component to create a Dialog with overlay."
55
publish = false
6-
version = "0.4.0-preview3"
6+
version = "0.4.0"
77

88
[dependencies]
99
anyhow.workspace = true

0 commit comments

Comments
 (0)