diff --git a/CHANGELOG.md b/CHANGELOG.md index 230bc0c..22b77ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ All notable changes to this project will be documented in this file. +## [0.0.1-alpha.5] - 2025-06-19 + +### 🚀 Features + +- Support `cpu_count` and `mem_limit` (#20) + +### 🐛 Bug Fixes + +- Allow empty version argument (#21) + +### 💼 Other + +- *(release)* Update homebrew file to v0.0.1.alpha-4 (#17) +- Update cargo.toml version (#18) + +### ⚙️ Miscellaneous Tasks + +- Add instructions to run locally (#19) + ## [0.0.1-alpha.4] - 2025-06-18 ### 🚀 Features @@ -13,6 +32,10 @@ All notable changes to this project will be documented in this file. - *(homebrew)* Change sha256 to v0.0.1-alpha.3 (#10) - Allow empty ports, env vars, and volumes (#12) +### 💼 Other + +- *(release)* Update CHANGELOG for v0.0.1-alpha.4 (#16) + ## [0.0.1-alpha.3] - 2025-06-17 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 3c5a1ad..fcf8881 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -110,7 +110,7 @@ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" [[package]] name = "container-compose" -version = "0.0.1-alpha.4" +version = "0.0.1-alpha.5" dependencies = [ "clap", "clap_mangen", diff --git a/Cargo.toml b/Cargo.toml index a68e51e..b7d91ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "container-compose" -version = "0.0.1-alpha.4" +version = "0.0.1-alpha.5" edition = "2024" license-file = "LICENSE" description = " A docker-compose like tool for Apple Containers" diff --git a/examples/docker-compose.yaml b/examples/docker-compose.yaml index ba4afbe..bdebce1 100644 --- a/examples/docker-compose.yaml +++ b/examples/docker-compose.yaml @@ -5,6 +5,7 @@ services: image: postgres:15 ports: - 5432:5432 + command: postgres environment: - POSTGRES_PASSWORD=postgres cpu_count: 1