Skip to content

Commit

Permalink
Add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
soareschen committed Dec 7, 2024
1 parent bd471a3 commit 2afcaa3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Pre-Release

- Rename `HasField::Field` to `HasField::Value` - [#35](https://github.com/contextgeneric/cgp/pull/35)

- Remove `Sized` constraint from `Async` trait - [#34](https://github.com/contextgeneric/cgp/pull/34)

- Component pattern improvements - [#24](https://github.com/contextgeneric/cgp/pull/24)
Expand Down
9 changes: 4 additions & 5 deletions crates/cgp-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
pub mod prelude;

pub use cgp_async::{async_trait, Async};
pub use cgp_component as component;
pub use cgp_error as error;
pub use cgp_field as field;
pub use cgp_inner as inner;
pub use cgp_type as types;
pub use {
cgp_component as component, cgp_error as error, cgp_field as field, cgp_inner as inner,
cgp_type as types,
};
3 changes: 1 addition & 2 deletions crates/cgp/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
pub use cgp_core as core;
pub use cgp_core::prelude;
pub use cgp_extra as extra;
pub use {cgp_core as core, cgp_extra as extra};

0 comments on commit 2afcaa3

Please sign in to comment.