Skip to content

Commit 2cabb93

Browse files
Prep 1.0: Bump versions (#472)
### Motivation Prep for 1.0.0. ### Modifications Bumped all 1.0.0-alpha.1 -> 1.0.0. ### Result Ready for 1.0.0 when it comes to versions. ### Test Plan Can't test yet. Co-authored-by: Si Beaumont <[email protected]>
1 parent cd2be00 commit 2cabb93

File tree

34 files changed

+95
-95
lines changed

34 files changed

+95
-95
lines changed

Examples/GreetingService/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ let package = Package(
1818
name: "GreetingService",
1919
platforms: [.macOS(.v13)],
2020
dependencies: [
21-
.package(url: "https://github.com/apple/swift-openapi-generator", exact: "1.0.0-alpha.1"),
22-
.package(url: "https://github.com/apple/swift-openapi-runtime", exact: "1.0.0-alpha.1"),
23-
.package(url: "https://github.com/swift-server/swift-openapi-vapor", exact: "1.0.0-alpha.1"),
21+
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.0.0"),
22+
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.0.0"),
23+
.package(url: "https://github.com/swift-server/swift-openapi-vapor", from: "1.0.0"),
2424
.package(url: "https://github.com/vapor/vapor", from: "4.89.0"),
2525
],
2626
targets: [

Examples/GreetingServiceClient/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ let package = Package(
1818
name: "GreetingServiceClient",
1919
platforms: [.macOS(.v13)],
2020
dependencies: [
21-
.package(url: "https://github.com/apple/swift-openapi-generator", exact: "1.0.0-alpha.1"),
22-
.package(url: "https://github.com/apple/swift-openapi-runtime", exact: "1.0.0-alpha.1"),
23-
.package(url: "https://github.com/apple/swift-openapi-urlsession", exact: "1.0.0-alpha.1"),
21+
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.0.0"),
22+
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.0.0"),
23+
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.0"),
2424
],
2525
targets: [
2626
.executableTarget(

Examples/HelloWorldiOSClientAppExample/HelloWorldiOSClientApp.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -608,24 +608,24 @@
608608
isa = XCRemoteSwiftPackageReference;
609609
repositoryURL = "https://github.com/apple/swift-openapi-generator.git";
610610
requirement = {
611-
kind = exactVersion;
612-
version = "1.0.0-alpha.1";
611+
kind = upToNextMajorVersion;
612+
minimumVersion = 1.0.0;
613613
};
614614
};
615615
3A133D0E2B1F2A600008DD5E /* XCRemoteSwiftPackageReference "swift-openapi-runtime" */ = {
616616
isa = XCRemoteSwiftPackageReference;
617617
repositoryURL = "https://github.com/apple/swift-openapi-runtime.git";
618618
requirement = {
619-
kind = exactVersion;
620-
version = "1.0.0-alpha.1";
619+
kind = upToNextMajorVersion;
620+
minimumVersion = 1.0.0;
621621
};
622622
};
623623
3A133D112B1F2A730008DD5E /* XCRemoteSwiftPackageReference "swift-openapi-urlsession" */ = {
624624
isa = XCRemoteSwiftPackageReference;
625625
repositoryURL = "https://github.com/apple/swift-openapi-urlsession.git";
626626
requirement = {
627-
kind = exactVersion;
628-
version = "1.0.0-alpha.1";
627+
kind = upToNextMajorVersion;
628+
minimumVersion = 1.0.0;
629629
};
630630
};
631631
/* End XCRemoteSwiftPackageReference section */

Examples/auth-client-middleware-example/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ let package = Package(
1818
name: "auth-client-middleware-example",
1919
platforms: [.macOS(.v11), .iOS(.v14), .tvOS(.v14), .watchOS(.v7), .visionOS(.v1)],
2020
dependencies: [
21-
.package(url: "https://github.com/apple/swift-openapi-generator", exact: "1.0.0-alpha.1"),
22-
.package(url: "https://github.com/apple/swift-openapi-runtime", exact: "1.0.0-alpha.1"),
23-
.package(url: "https://github.com/apple/swift-openapi-urlsession", exact: "1.0.0-alpha.1"),
21+
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.0.0"),
22+
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.0.0"),
23+
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.0"),
2424
.package(url: "https://github.com/apple/swift-http-types", from: "1.0.2"),
2525
],
2626
targets: [

Examples/auth-server-middleware-example/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ let package = Package(
1818
name: "auth-server-middleware-example",
1919
platforms: [.macOS(.v10_15)],
2020
dependencies: [
21-
.package(url: "https://github.com/apple/swift-openapi-generator", exact: "1.0.0-alpha.1"),
22-
.package(url: "https://github.com/apple/swift-openapi-runtime", exact: "1.0.0-alpha.1"),
23-
.package(url: "https://github.com/swift-server/swift-openapi-vapor", exact: "1.0.0-alpha.1"),
21+
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.0.0"),
22+
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.0.0"),
23+
.package(url: "https://github.com/swift-server/swift-openapi-vapor", from: "1.0.0"),
2424
.package(url: "https://github.com/vapor/vapor", from: "4.89.0"),
2525
],
2626
targets: [

Examples/command-line-client-example/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ let package = Package(
1818
name: "command-line-client-example",
1919
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1)],
2020
dependencies: [
21-
.package(url: "https://github.com/apple/swift-openapi-generator", exact: "1.0.0-alpha.1"),
22-
.package(url: "https://github.com/apple/swift-openapi-runtime", exact: "1.0.0-alpha.1"),
23-
.package(url: "https://github.com/apple/swift-openapi-urlsession", exact: "1.0.0-alpha.1"),
21+
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.0.0"),
22+
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.0.0"),
23+
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.0"),
2424
.package(url: "https://github.com/apple/swift-argument-parser", from: "1.3.0"),
2525
],
2626
targets: [

Examples/curated-client-library-example/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ let package = Package(
1919
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1)],
2020
products: [.library(name: "CuratedLibraryClient", targets: ["CuratedLibraryClient"])],
2121
dependencies: [
22-
.package(url: "https://github.com/apple/swift-openapi-generator", exact: "1.0.0-alpha.1"),
23-
.package(url: "https://github.com/apple/swift-openapi-runtime", exact: "1.0.0-alpha.1"),
24-
.package(url: "https://github.com/apple/swift-openapi-urlsession", exact: "1.0.0-alpha.1"),
22+
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.0.0"),
23+
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.0.0"),
24+
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.0"),
2525
],
2626
targets: [
2727
.target(

Examples/hello-world-async-http-client-example/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let package = Package(
1818
name: "hello-world-async-http-client-example",
1919
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1)],
2020
dependencies: [
21-
.package(url: "https://github.com/apple/swift-openapi-generator", exact: "1.0.0-alpha.1"),
21+
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.0.0"),
2222
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.0.0"),
2323
.package(url: "https://github.com/swift-server/swift-openapi-async-http-client", from: "1.0.0"),
2424
],

Examples/hello-world-hummingbird-server-example/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ let package = Package(
1818
name: "hello-world-hummingbird-server-example",
1919
platforms: [.macOS(.v10_15)],
2020
dependencies: [
21-
.package(url: "https://github.com/apple/swift-openapi-generator", exact: "1.0.0-alpha.1"),
22-
.package(url: "https://github.com/apple/swift-openapi-runtime", exact: "1.0.0-alpha.1"),
23-
.package(url: "https://github.com/swift-server/swift-openapi-hummingbird", exact: "1.0.0-alpha.1"),
21+
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.0.0"),
22+
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.0.0"),
23+
.package(url: "https://github.com/swift-server/swift-openapi-hummingbird", from: "1.0.0"),
2424
.package(url: "https://github.com/hummingbird-project/hummingbird", from: "1.10.1"),
2525
],
2626
targets: [

Examples/hello-world-urlsession-client-example/Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ let package = Package(
1818
name: "hello-world-urlsession-client-example",
1919
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6), .visionOS(.v1)],
2020
dependencies: [
21-
.package(url: "https://github.com/apple/swift-openapi-generator", exact: "1.0.0-alpha.1"),
22-
.package(url: "https://github.com/apple/swift-openapi-runtime", exact: "1.0.0-alpha.1"),
23-
.package(url: "https://github.com/apple/swift-openapi-urlsession", exact: "1.0.0-alpha.1"),
21+
.package(url: "https://github.com/apple/swift-openapi-generator", from: "1.0.0"),
22+
.package(url: "https://github.com/apple/swift-openapi-runtime", from: "1.0.0"),
23+
.package(url: "https://github.com/apple/swift-openapi-urlsession", from: "1.0.0"),
2424
],
2525
targets: [
2626
.executableTarget(

0 commit comments

Comments
 (0)