diff --git a/README.md b/README.md index cd4c354..f964bb6 100644 --- a/README.md +++ b/README.md @@ -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"} # ... ``` @@ -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"} # ... ``` diff --git a/cjpm.toml b/cjpm.toml index 7a0e62a..682cb87 100644 --- a/cjpm.toml +++ b/cjpm.toml @@ -9,7 +9,7 @@ output-type = "dynamic" src-dir = "" target-dir = "" - version = "0.1.0" + version = "0.2.0" package-configuration = {} [ffi.c] diff --git a/examples/basic_widgets/cjpm.toml b/examples/basic_widgets/cjpm.toml index f8c008f..4bea65a 100644 --- a/examples/basic_widgets/cjpm.toml +++ b/examples/basic_widgets/cjpm.toml @@ -1,5 +1,5 @@ [dependencies] - # imgui4cj = { path = "../../", version = "0.1.0"} + # imgui4cj = { path = "../../", version = "0.2.0"} [package] cjc-version = "0.53.4" @@ -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" } diff --git a/examples/helloworld/cjpm.toml b/examples/helloworld/cjpm.toml index f8b6f09..8615fc7 100644 --- a/examples/helloworld/cjpm.toml +++ b/examples/helloworld/cjpm.toml @@ -1,5 +1,5 @@ [dependencies] - # imgui4cj = { path = "../../", version = "0.1.0"} + # imgui4cj = { path = "../../", version = "0.2.0"} [package] cjc-version = "0.53.4" @@ -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" }