Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import PackageDescription
let releaseVersion = ProcessInfo.processInfo.environment["RELEASE_VERSION"] ?? "0.0.0"
let gitCommit = ProcessInfo.processInfo.environment["GIT_COMMIT"] ?? "unspecified"
let builderShimVersion = "0.7.0"
let scVersion = "0.16.0"
let scVersion = "0.16.1"

let package = Package(
name: "container",
Expand Down
4 changes: 2 additions & 2 deletions Sources/ContainerClient/Core/Filesystem.swift
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public struct Filesystem: Sendable, Codable {
/// A block based filesystem.
public static func block(
format: String, source: String, destination: String, options: MountOptions, cache: CacheMode = .auto,
sync: SyncMode = .full
sync: SyncMode = .fsync
) -> Filesystem {
.init(
type: .block(format: format, cache: cache, sync: sync),
Expand All @@ -100,7 +100,7 @@ public struct Filesystem: Sendable, Codable {
/// A named volume filesystem.
public static func volume(
name: String, format: String, source: String, destination: String, options: MountOptions,
cache: CacheMode = .auto, sync: SyncMode = .full
cache: CacheMode = .auto, sync: SyncMode = .fsync
) -> Filesystem {
.init(
type: .volume(name: name, format: format, cache: cache, sync: sync),
Expand Down