diff --git a/.spi.yml b/.spi.yml index b2194b2..baaed12 100644 --- a/.spi.yml +++ b/.spi.yml @@ -2,5 +2,4 @@ version: 1 builder: configs: - documentation_targets: - - containertool - swift-container-plugin diff --git a/Examples/HelloWorldHummingbird/Package.swift b/Examples/HelloWorldHummingbird/Package.swift index 8361bc4..e4deb8e 100644 --- a/Examples/HelloWorldHummingbird/Package.swift +++ b/Examples/HelloWorldHummingbird/Package.swift @@ -21,7 +21,7 @@ let package = Package( platforms: [.macOS(.v14)], dependencies: [ .package(url: "https://github.com/hummingbird-project/hummingbird.git", from: "2.1.0"), - .package(url: "https://github.com/apple/swift-container-plugin", from: "0.5.0"), + .package(url: "https://github.com/apple/swift-container-plugin", from: "1.0.0"), .package(url: "https://github.com/apple/swift-argument-parser", from: "1.3.0"), ], targets: [ diff --git a/Examples/HelloWorldVapor/Package.swift b/Examples/HelloWorldVapor/Package.swift index 6f0bcd4..f718889 100644 --- a/Examples/HelloWorldVapor/Package.swift +++ b/Examples/HelloWorldVapor/Package.swift @@ -21,7 +21,7 @@ let package = Package( platforms: [.macOS(.v13)], dependencies: [ .package(url: "https://github.com/vapor/vapor", from: "4.102.0"), - .package(url: "https://github.com/apple/swift-container-plugin", from: "0.5.0"), + .package(url: "https://github.com/apple/swift-container-plugin", from: "1.0.0"), ], targets: [.executableTarget(name: "hello-world", dependencies: [.product(name: "Vapor", package: "vapor")])] ) diff --git a/Examples/HelloWorldWithResources/Package.swift b/Examples/HelloWorldWithResources/Package.swift index 17e387f..62307bf 100644 --- a/Examples/HelloWorldWithResources/Package.swift +++ b/Examples/HelloWorldWithResources/Package.swift @@ -21,7 +21,7 @@ let package = Package( platforms: [.macOS(.v14)], dependencies: [ .package(url: "https://github.com/hummingbird-project/hummingbird.git", from: "2.1.0"), - .package(url: "https://github.com/apple/swift-container-plugin", from: "0.5.0"), + .package(url: "https://github.com/apple/swift-container-plugin", from: "1.0.0"), .package(url: "https://github.com/apple/swift-argument-parser", from: "1.3.0"), ], targets: [ diff --git a/README.md b/README.md index 8e0c932..b940a21 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Swift Container Plugin -[![](https://img.shields.io/badge/docc-read_documentation-blue)](https://swiftpackageindex.com/apple/swift-container-plugin/documentation/containerimagebuilderplugin) +[![](https://img.shields.io/badge/docc-read_documentation-blue)](https://swiftpackageindex.com/apple/swift-container-plugin/documentation/swift-container-plugin) [![](https://img.shields.io/github/v/release/apple/swift-container-plugin?include_prereleases)](https://github.com/apple/swift-container-plugin/releases) [![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fapple%2Fswift-container-plugin%2Fbadge%3Ftype%3Dswift-versions)](https://swiftpackageindex.com/apple/swift-container-plugin) [![](https://img.shields.io/endpoint?url=https%3A%2F%2Fswiftpackageindex.com%2Fapi%2Fpackages%2Fapple%2Fswift-container-plugin%2Fbadge%3Ftype%3Dplatforms)](https://swiftpackageindex.com/apple/swift-container-plugin) @@ -69,6 +69,6 @@ Trying to pull registry.example.com/myservice@sha256:a3f75d0932d052dd9d448a1c904 ## Getting Started -Learn more about setting up your project in the [plugin documentation](https://swiftpackageindex.com/apple/swift-container-plugin/documentation/containerimagebuilderplugin). +Learn more about setting up your project in the [plugin documentation](https://swiftpackageindex.com/apple/swift-container-plugin/documentation/swift-container-plugin). Take a look at the [Examples](Examples).