From 71eccfa562d9074842351adedd1ffbe37d2c54e6 Mon Sep 17 00:00:00 2001 From: Ruslan Alikhamov Date: Tue, 23 Jan 2024 00:24:33 +0400 Subject: [PATCH] docs: update metadata for 2.1.5 release --- Sourcery.podspec | 2 +- SourceryFramework.podspec | 2 +- SourceryRuntime.podspec | 2 +- SourceryUtils.podspec | 2 +- SourceryUtils/Sources/Version.swift | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Sourcery.podspec b/Sourcery.podspec index 06a885394..7460e00c2 100644 --- a/Sourcery.podspec +++ b/Sourcery.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "Sourcery" - s.version = "2.1.4" + s.version = "2.1.5" s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code." s.platform = :osx, '10.15' s.platform = :ios, '12' diff --git a/SourceryFramework.podspec b/SourceryFramework.podspec index 17f9b2e13..93fce3f13 100644 --- a/SourceryFramework.podspec +++ b/SourceryFramework.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "SourceryFramework" - s.version = "2.1.4" + s.version = "2.1.5" s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code." s.platform = :osx, '10.15' diff --git a/SourceryRuntime.podspec b/SourceryRuntime.podspec index fd2ba8dbe..abb41f677 100644 --- a/SourceryRuntime.podspec +++ b/SourceryRuntime.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "SourceryRuntime" - s.version = "2.1.4" + s.version = "2.1.5" s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code." s.platform = :osx, '10.15' diff --git a/SourceryUtils.podspec b/SourceryUtils.podspec index 69016183e..7e98f1c22 100644 --- a/SourceryUtils.podspec +++ b/SourceryUtils.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "SourceryUtils" - s.version = "2.1.4" + s.version = "2.1.5" s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code." s.platform = :osx, '10.15' diff --git a/SourceryUtils/Sources/Version.swift b/SourceryUtils/Sources/Version.swift index 82e6fc0d6..110c36204 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" : "2.1.4") + public static let current = SourceryVersion(value: inUnitTests ? "Major.Minor.Patch" : "2.1.5") } #if canImport(ObjectiveC)