From e7d1a3ee10c53d0feea4e3d24d0d9cf9cd3b0458 Mon Sep 17 00:00:00 2001 From: Ruslan Alikhamov Date: Wed, 1 May 2024 20:56:02 +0400 Subject: [PATCH] docs: update metadata for 2.2.4 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 221540dea..c5bd27290 100644 --- a/Sourcery.podspec +++ b/Sourcery.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "Sourcery" - s.version = "2.2.3" + s.version = "2.2.4" s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code." s.ios.deployment_target = '12' s.osx.deployment_target = '10.15' diff --git a/SourceryFramework.podspec b/SourceryFramework.podspec index 510cb300e..e1977cec6 100644 --- a/SourceryFramework.podspec +++ b/SourceryFramework.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "SourceryFramework" - s.version = "2.2.3" + s.version = "2.2.4" 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 e083172b0..59e7828d0 100644 --- a/SourceryRuntime.podspec +++ b/SourceryRuntime.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "SourceryRuntime" - s.version = "2.2.3" + s.version = "2.2.4" 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 8a6e9dd1e..a68addeb6 100644 --- a/SourceryUtils.podspec +++ b/SourceryUtils.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "SourceryUtils" - s.version = "2.2.3" + s.version = "2.2.4" 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 b8007a442..23c8abfcb 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.2.3") + public static let current = SourceryVersion(value: inUnitTests ? "Major.Minor.Patch" : "2.2.4") } #if canImport(ObjectiveC)