diff --git a/CHANGELOG.md b/CHANGELOG.md index 2de230488..bdd208112 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,21 @@ ##### Breaking -- The command-line parsing strategy for options that were delimited by a pipe or comma has changed. These options are now parsed as a space delimited list, e.g `--option "arg1" "arg2"`. +- None. + +##### Enhancements + +- None. + +##### Bug Fixes + +- None. + +## 2.18.0 (2024-01-21) + +##### Breaking + +- The command-line parsing strategy for options that were delimited by a pipe or comma has changed. These options are now parsed as a space delimited list, e.g `--option "arg1" "arg2"`. - The option `--external-encodable-protocols` is deprecated, use `--external-codable-protocols` instead. ##### Enhancements diff --git a/Periphery.podspec b/Periphery.podspec index cfb6209b2..8c0c07105 100644 --- a/Periphery.podspec +++ b/Periphery.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "Periphery" - spec.version = "2.17.1" + spec.version = "2.18.0" spec.summary = "A tool to identify unused code in Swift projects." 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 9459b7d7f..70daed848 100644 --- a/Sources/Frontend/Version.swift +++ b/Sources/Frontend/Version.swift @@ -1 +1 @@ -let PeripheryVersion = "2.17.1" +let PeripheryVersion = "2.18.0"