diff --git a/CHANGELOG.md b/CHANGELOG.md index 23111cd7f..aa4a7f5cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,20 @@ ##### Bug Fixes +- None. + +## 2.10.1 (2022-11-20) + +##### Breaking + +- None. + +##### Enhancements + +- None. + +##### Bug Fixes + - Fix error building with SwiftPM and Swift 5.7: `the target 'PeripheryKit' in product 'periphery' contains unsafe build flags` - Fix unused parameter analysis for shorthand if-let syntax. - Workaround Swift shorthand if-let syntax bug (https://github.com/apple/swift/issues/61509). Global properties are not handled by this workaround. diff --git a/Periphery.podspec b/Periphery.podspec index c78d10825..7cc8c3f18 100644 --- a/Periphery.podspec +++ b/Periphery.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "Periphery" - spec.version = "2.10.0" + spec.version = "2.10.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 c193705f6..6b9b55c73 100644 --- a/Sources/Frontend/Version.swift +++ b/Sources/Frontend/Version.swift @@ -1 +1 @@ -let PeripheryVersion = "2.10.0" +let PeripheryVersion = "2.10.1"