diff --git a/CHANGELOG.md b/CHANGELOG.md index 94312857f6..2b236fa2fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## v1.0.5 + +#### Fixed +- **Fixed - Missing SPM plug-in:** The missing Swift Package product has been added and the `Install CLI` plug-in is now available from the SPM command line and the Xcode project menu. [#2683](/~https://github.com/apollographql/apollo-ios/pull/2683) + ## v1.0.4 #### Fixed diff --git a/Configuration/Shared/Project-Version.xcconfig b/Configuration/Shared/Project-Version.xcconfig index 8450f02c81..fae923211b 100644 --- a/Configuration/Shared/Project-Version.xcconfig +++ b/Configuration/Shared/Project-Version.xcconfig @@ -1 +1 @@ -CURRENT_PROJECT_VERSION = 1.0.4 +CURRENT_PROJECT_VERSION = 1.0.5 diff --git a/Sources/CodegenCLI/Constants.swift b/Sources/CodegenCLI/Constants.swift index e676484c13..611d8a03d7 100644 --- a/Sources/CodegenCLI/Constants.swift +++ b/Sources/CodegenCLI/Constants.swift @@ -1,6 +1,6 @@ import Foundation public enum Constants { - public static let CLIVersion: String = "1.0.4" + public static let CLIVersion: String = "1.0.5" static let defaultFilePath: String = "./apollo-codegen-config.json" }