diff --git a/CHANGELOG.md b/CHANGELOG.md index d46f8b5e..5e67a126 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.3.1] + +Small fixups from 0.3 + +* Actually export `ExecutorInner` +* Add a missing `#[doc(hidden)]` around an internal macro. + ## [0.3] Huge release! Much safer `Executor` API that no longer requires recursion diff --git a/Cargo.lock b/Cargo.lock index 7bb75eb5..3c36bd6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -268,7 +268,7 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "piccolo" -version = "0.3.0" +version = "0.3.1" dependencies = [ "ahash", "allocator-api2", @@ -283,7 +283,7 @@ dependencies = [ [[package]] name = "piccolo-util" -version = "0.3.0" +version = "0.3.1" dependencies = [ "gc-arena", "piccolo", diff --git a/Cargo.toml b/Cargo.toml index 4da8db13..20b026c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ default-members = [ ] [workspace.package] -version = "0.3.0" +version = "0.3.1" edition = "2021" authors = ["kyren "] license = "MIT" @@ -25,7 +25,7 @@ rand = { version = "0.8", features = ["small_rng"] } serde = "1.0" thiserror = "1.0" -piccolo = { path = "./", version = "0.3.0" } +piccolo = { path = "./", version = "0.3.1" } [package] name = "piccolo"