Skip to content

Commit 108e758

Browse files
chore: release v0.10.0 with checkpointing, network sync, and volume management
1 parent 7719251 commit 108e758

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Sources/Container-Compose/Application.swift

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,18 @@ import ArgumentParser
1919

2020
public struct Main: AsyncParsableCommand {
2121
private static let commandName: String = "container-compose"
22-
private static let version: String = "0.9.1"
22+
private static let version: String = "0.10.0"
2323
public static var versionString: String {
2424
"\(commandName) version \(version)"
2525
}
2626
public static let configuration: CommandConfiguration = .init(
2727
commandName: Self.commandName,
28-
abstract: "A tool to manage Docker Compose files using Apple Container. This fork adds dnsSearch support, multi-stage build target support, improved volume handling, and better entrypoint/command debugging.",
28+
abstract: "A tool to manage Docker Compose files using Apple Container. Features: checkpointing, network sync, volume management, dnsSearch, and multi-stage builds.",
2929
version: Self.versionString,
3030
subcommands: [
3131
ComposeUp.self,
3232
ComposeDown.self,
33+
CheckpointCommand.self,
3334
Version.self
3435
])
3536

Sources/Container-Compose/Commands/Version.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public struct Version: ParsableCommand {
2828

2929
public static let configuration: CommandConfiguration = .init(
3030
commandName: "version",
31-
abstract: "Display container-compose version and fork capabilities (dnsSearch, multi-stage build target, improved volume and entrypoint handling)"
31+
abstract: "Display container-compose version and fork capabilities (checkpointing, network sync, volumes, dnsSearch, multi-stage builds)"
3232
)
3333

3434
public func run() {

docs/FORK_README_UPDATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ We are leveraging `apple/container` v0.10.0 features to enhance `container-compo
1717

1818
---
1919
*Last Updated: 2026-02-28*
20+
*Release Version: 0.10.0*

0 commit comments

Comments
 (0)