From 9bfe46c1ee66eebfbf671ed88200b23141ee8b6b Mon Sep 17 00:00:00 2001 From: Aaron Kutch Date: Thu, 6 Jun 2024 14:12:40 -0500 Subject: [PATCH] Version 0.13.0 --- CHANGELOG.md | 2 +- Cargo.toml | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97a9518..d5c391f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.13.0] - TODO +## [0.13.0] - 2024-06-06 ### Fixes - Large container networks with common build definitions are dramatically faster to start - Fixed a long standing issue where stdout and stderr were combined from container runners diff --git a/Cargo.toml b/Cargo.toml index 66feee3..96f3cdc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "super_orchestrator" -version = "0.12.1" +version = "0.13.0" edition = "2021" authors = ["Aaron Kutch "] license = "MIT OR Apache-2.0" @@ -9,14 +9,13 @@ repository = "https://github.com/AaronKutch/super_orchestrator" documentation = "https://docs.rs/super_orchestrator" keywords = ["container", "docker"] description = "programmable container orchestration tools" - # TODO turn into workspace with testcrate and examples crate [dependencies] bstr = "1" ctrlc = { version = "3", default-features = false } dunce = "1.0" -nix = { version = "0.28", optional = true, default-features = false, features = ["signal"] } +nix = { version = "0.29", optional = true, default-features = false, features = ["signal"] } owo-colors = { version = "4.0", default-features = false } postcard = { version = "1", features = ["use-std"] } serde = { version = "1.0", features = ["derive"] }