diff --git a/CHANGELOG.md b/CHANGELOG.md index 665ff7bd7..e5e8aa7e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Sourcery CHANGELOG --- -## Master +## 1.2.0 ### New Features - `Self` reference is resolved to correct type. [Enchancement Request](https://github.com/krzysztofzablocki/Sourcery/issues/900) diff --git a/Sourcery.podspec b/Sourcery.podspec index 803e69e7c..7ee350990 100644 --- a/Sourcery.podspec +++ b/Sourcery.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "Sourcery" - s.version = "1.1.1" + s.version = "1.2.0" s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code." s.description = <<-DESC diff --git a/Sourcery.xcodeproj/project.pbxproj b/Sourcery.xcodeproj/project.pbxproj index 259b6771a..5bfaef6ac 100644 --- a/Sourcery.xcodeproj/project.pbxproj +++ b/Sourcery.xcodeproj/project.pbxproj @@ -2200,7 +2200,7 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_IDENTITY = "-"; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1.1.1; + CURRENT_PROJECT_VERSION = 1.2.0; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)", @@ -2222,7 +2222,7 @@ CLANG_ENABLE_CODE_COVERAGE = NO; CODE_SIGN_IDENTITY = "-"; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1.1.1; + CURRENT_PROJECT_VERSION = 1.2.0; FRAMEWORK_SEARCH_PATHS = ( "$(inherited)", "$(PROJECT_DIR)", diff --git a/SourceryFramework.podspec b/SourceryFramework.podspec index c9cbdd872..ee78eaf87 100644 --- a/SourceryFramework.podspec +++ b/SourceryFramework.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "SourceryFramework" - s.version = "1.1.1" + s.version = "1.2.0" s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code." s.description = <<-DESC diff --git a/SourceryRuntime.podspec b/SourceryRuntime.podspec index 323098350..55475937b 100644 --- a/SourceryRuntime.podspec +++ b/SourceryRuntime.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "SourceryRuntime" - s.version = "1.1.1" + s.version = "1.2.0" s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code." s.description = <<-DESC diff --git a/SourceryUtils.podspec b/SourceryUtils.podspec index 6f3342a3a..325e10c2a 100644 --- a/SourceryUtils.podspec +++ b/SourceryUtils.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "SourceryUtils" - s.version = "1.1.1" + s.version = "1.2.0" s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code." s.description = <<-DESC diff --git a/SourceryUtils/Sources/Version.swift b/SourceryUtils/Sources/Version.swift index 08e7b1155..d3a465296 100644 --- a/SourceryUtils/Sources/Version.swift +++ b/SourceryUtils/Sources/Version.swift @@ -10,7 +10,7 @@ import Foundation public struct SourceryVersion { public let value: String - public static let current = SourceryVersion(value: inUnitTests ? "Major.Minor.Patch" : "1.1.1") + public static let current = SourceryVersion(value: inUnitTests ? "Major.Minor.Patch" : "1.2.0") } public var inUnitTests = NSClassFromString("XCTest") != nil