Skip to content

Commit

Permalink
Prepare for V0.3.0 Release (#57)
Browse files Browse the repository at this point in the history
* Bump version to v0.3.0

* Update changelog
  • Loading branch information
soareschen authored Jan 8, 2025
1 parent c86ec51 commit fa0e457
Show file tree
Hide file tree
Showing 24 changed files with 81 additions and 83 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v0.3.0 (pre-release)
## v0.3.0 (2025-01-08)

- Introduce Accessor Component Macros - [#56](https://github.com/contextgeneric/cgp/pull/55)
- Introduce `#[cgp_getter]` attribute macro that extends `#[cgp_component]` and implement
Expand Down
42 changes: 21 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/cgp-async-macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ license = { workspace = true }
repository = { workspace = true }
authors = { workspace = true }
rust-version = { workspace = true }
version = "0.2.0"
version = "0.3.0"
keywords = { workspace = true }
description = """
Context-generic programming async macros
Expand Down
6 changes: 3 additions & 3 deletions crates/cgp-async/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-async"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand All @@ -25,5 +25,5 @@ sync = [ "async" ]
static = [ "async" ]

[dependencies]
cgp-async-macro = { version = "0.2.0" }
cgp-sync = { version = "0.2.0" }
cgp-async-macro = { version = "0.3.0" }
cgp-sync = { version = "0.3.0" }
2 changes: 1 addition & 1 deletion crates/cgp-component-macro-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-component-macro-lib"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/cgp-component-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-component-macro"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand All @@ -16,4 +16,4 @@ proc-macro = true

[dependencies]
syn = { version = "2.0.95", features = [ "full", "extra-traits" ] }
cgp-component-macro-lib = { version = "0.2.0" }
cgp-component-macro-lib = { version = "0.3.0" }
2 changes: 1 addition & 1 deletion crates/cgp-component/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-component"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand Down
16 changes: 8 additions & 8 deletions crates/cgp-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-core"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand All @@ -16,10 +16,10 @@ default = [ "full" ]
full = [ "cgp-async/full" ]

[dependencies]
cgp-async = { version = "0.2.0", default-features = false }
cgp-component = { version = "0.2.0" }
cgp-component-macro = { version = "0.2.0" }
cgp-type = { version = "0.2.0" }
cgp-error = { version = "0.2.0" }
cgp-field = { version = "0.2.0" }
cgp-field-macro = { version = "0.2.0" }
cgp-async = { version = "0.3.0", default-features = false }
cgp-component = { version = "0.3.0" }
cgp-component-macro = { version = "0.3.0" }
cgp-type = { version = "0.3.0" }
cgp-error = { version = "0.3.0" }
cgp-field = { version = "0.3.0" }
cgp-field-macro = { version = "0.3.0" }
4 changes: 2 additions & 2 deletions crates/cgp-error-anyhow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-error-anyhow"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand All @@ -12,5 +12,5 @@ description = """
"""

[dependencies]
cgp-core = { version = "0.2.0", default-features = false }
cgp-core = { version = "0.3.0", default-features = false }
anyhow = { version = "1.0.95", default-features = false }
4 changes: 2 additions & 2 deletions crates/cgp-error-extra/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-error-extra"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand All @@ -16,4 +16,4 @@ default = [ "alloc" ]
alloc = []

[dependencies]
cgp-error = { version = "0.2.0" }
cgp-error = { version = "0.3.0" }
4 changes: 2 additions & 2 deletions crates/cgp-error-eyre/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-error-eyre"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand All @@ -12,5 +12,5 @@ description = """
"""

[dependencies]
cgp-core = { version = "0.2.0", default-features = false }
cgp-core = { version = "0.3.0", default-features = false }
eyre = { version = "0.6.12", default-features = false }
4 changes: 2 additions & 2 deletions crates/cgp-error-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-error-std"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand All @@ -12,4 +12,4 @@ description = """
"""

[dependencies]
cgp-core = { version = "0.2.0", default-features = false }
cgp-core = { version = "0.3.0", default-features = false }
10 changes: 5 additions & 5 deletions crates/cgp-error/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-error"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand All @@ -12,7 +12,7 @@ description = """
"""

[dependencies]
cgp-async = { version = "0.2.0", default-features = false }
cgp-component = { version = "0.2.0" }
cgp-component-macro = { version = "0.2.0" }
cgp-type = { version = "0.2.0" }
cgp-async = { version = "0.3.0", default-features = false }
cgp-component = { version = "0.3.0" }
cgp-component-macro = { version = "0.3.0" }
cgp-type = { version = "0.3.0" }
10 changes: 5 additions & 5 deletions crates/cgp-extra/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-extra"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand All @@ -15,7 +15,7 @@ default = [ "full" ]
full = [ "cgp-error-extra/alloc" ]

[dependencies]
cgp-error-extra = { version = "0.2.0", default-features = false }
cgp-inner = { version = "0.2.0" }
cgp-run = { version = "0.2.0" }
cgp-runtime = { version = "0.2.0" }
cgp-error-extra = { version = "0.3.0", default-features = false }
cgp-inner = { version = "0.3.0" }
cgp-run = { version = "0.3.0" }
cgp-runtime = { version = "0.3.0" }
2 changes: 1 addition & 1 deletion crates/cgp-field-macro-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cgp-field-macro-lib"
version = "0.2.0"
version = "0.3.0"
edition = { workspace = true }
license = { workspace = true }
repository = { workspace = true }
Expand Down
Loading

0 comments on commit fa0e457

Please sign in to comment.