diff --git a/CHANGELOG.md b/CHANGELOG.md index b1b5e7f6..47ca83f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## [0.23.0] - 2024-09-25 +### Details +#### Bug Fixes +- Expose public `copy` types ([#734](https://github.com/testcontainers/testcontainers-rs/pull/734)) +- Typo in an error variant ([#738](https://github.com/testcontainers/testcontainers-rs/pull/738)) + +#### Features +- Support copy files to container ([#730](https://github.com/testcontainers/testcontainers-rs/pull/730)) +- Support copying directories to container ([#735](https://github.com/testcontainers/testcontainers-rs/pull/735)) + +#### Miscellaneous Tasks +- Copy-to-container interface improvements ([#732](https://github.com/testcontainers/testcontainers-rs/pull/732)) + +#### Refactor +- Replace dirs crate with etcetera ([#736](https://github.com/testcontainers/testcontainers-rs/pull/736)) ## [0.22.0] - 2024-08-30 ### Details #### Bug Fixes diff --git a/testcontainers/Cargo.toml b/testcontainers/Cargo.toml index 82cb2713..ef09aa83 100644 --- a/testcontainers/Cargo.toml +++ b/testcontainers/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "testcontainers" -version = "0.22.0" +version = "0.23.0" categories = ["development-tools::testing"] readme = "README.md" authors.workspace = true