diff --git a/CHANGELOG.md b/CHANGELOG.md index 27e02b141..5b373a044 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,20 @@ ##### Bug Fixes +- None. + +## 2.12.1 (2023-03-04) + +##### Breaking + +- None. + +##### Enhancements + +- None. + +##### Bug Fixes + - Fix JSON deserialization crash caused by unrelated warnings in the output from `xcodebuild -list -json`. - Retain all `@MainActor` annotated types and their constructors to workaround a bug in Swift 5.7. - Retain all constructors on types instantiated via `Self(...)` to workaround false positives caused by a bug in Swift. diff --git a/Periphery.podspec b/Periphery.podspec index e11beecde..755e6d56a 100644 --- a/Periphery.podspec +++ b/Periphery.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "Periphery" - spec.version = "2.12.0" + spec.version = "2.12.1" spec.summary = "Eliminate Unused Swift Code." spec.homepage = "https://github.com/peripheryapp/periphery" spec.license = { :type => 'MIT', :file => 'LICENSE.md' } diff --git a/Sources/Frontend/Version.swift b/Sources/Frontend/Version.swift index 164603b2c..e7f17b088 100644 --- a/Sources/Frontend/Version.swift +++ b/Sources/Frontend/Version.swift @@ -1 +1 @@ -let PeripheryVersion = "2.12.0" +let PeripheryVersion = "2.12.1"