Skip to content

Commit

Permalink
Bump version from 0.1.0 to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PGZXB committed Aug 3, 2024
1 parent cb11e4d commit adc8e70
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This project provides Cangjie programming language bindings for [Dear ImGui](htt
3. Add package dependency to your `cjpm.toml`
```toml
[dependencies]
imgui4cj = { path = "/path/to/imgui4cj", version = "0.1.0"}
imgui4cj = { path = "/path/to/imgui4cj", version = "0.2.0"}

# ...
```
Expand All @@ -49,7 +49,7 @@ This project provides Cangjie programming language bindings for [Dear ImGui](htt
2. Add package dependency to your `cjpm.toml`
```toml
[dependencies]
imgui4cj = { path = "/path/to/imgui4cj", version = "0.1.0"}
imgui4cj = { path = "/path/to/imgui4cj", version = "0.2.0"}

# ...
```
Expand Down
2 changes: 1 addition & 1 deletion cjpm.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
output-type = "dynamic"
src-dir = ""
target-dir = ""
version = "0.1.0"
version = "0.2.0"
package-configuration = {}

[ffi.c]
Expand Down
4 changes: 2 additions & 2 deletions examples/basic_widgets/cjpm.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[dependencies]
# imgui4cj = { path = "../../", version = "0.1.0"}
# imgui4cj = { path = "../../", version = "0.2.0"}

[package]
cjc-version = "0.53.4"
Expand All @@ -14,7 +14,7 @@
package-configuration = {}

# To avoid unnecessary compilation, binary dependencies are manually specified.
# Users can use imgui4cj by directly adding `imgui4cj = { path = "/path/to/imgui4cj", version = "0.1.0" }` to their [dependencies].
# Users can use imgui4cj by directly adding `imgui4cj = { path = "/path/to/imgui4cj", version = "0.2.0" }` to their [dependencies].

[ffi.c]
imgui4cj_c_lib = { path = "../../src/libs" }
Expand Down
4 changes: 2 additions & 2 deletions examples/helloworld/cjpm.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[dependencies]
# imgui4cj = { path = "../../", version = "0.1.0"}
# imgui4cj = { path = "../../", version = "0.2.0"}

[package]
cjc-version = "0.53.4"
Expand All @@ -14,7 +14,7 @@
package-configuration = {}

# To avoid unnecessary compilation, binary dependencies are manually specified.
# Users can use imgui4cj by directly adding `imgui4cj = { path = "/path/to/imgui4cj", version = "0.1.0" }` to their [dependencies].
# Users can use imgui4cj by directly adding `imgui4cj = { path = "/path/to/imgui4cj", version = "0.2.0" }` to their [dependencies].

[ffi.c]
imgui4cj_c_lib = { path = "../../src/libs" }
Expand Down

0 comments on commit adc8e70

Please sign in to comment.