From ec748b51d016e42016c93f8df8acb5e8f3635ccc Mon Sep 17 00:00:00 2001 From: Mathijs Kadijk Date: Thu, 23 Apr 2020 00:50:27 +0200 Subject: [PATCH] Preparing for the 5.2.0 release --- Changelog.md | 8 ++++++++ R.swift.podspec | 2 +- Sources/rswift/Rswift.swift | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index 8bec2933..1120c675 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,11 @@ +## 5.2.0 + +- Fix duplicate names in entitlements +- Readme & documentation updates +- Fix only parse plist/entitlements when generator is enabled (by @roelspruit) +- Change type for C strings to make usage of format strings containing c style placeholders easier (by @schroepf) +- Use info plist location & entitlements location as exposed in env variables + ## 5.1.0 - WatchOS support (by @lammertw) diff --git a/R.swift.podspec b/R.swift.podspec index 981ecebc..d9e694a2 100644 --- a/R.swift.podspec +++ b/R.swift.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |spec| spec.name = "R.swift" - spec.version = "5.1.0" + spec.version = "5.2.0" spec.license = "MIT" spec.summary = "Get strong typed, autocompleted resources like images, fonts and segues in Swift projects" diff --git a/Sources/rswift/Rswift.swift b/Sources/rswift/Rswift.swift index a7364da7..d2688614 100644 --- a/Sources/rswift/Rswift.swift +++ b/Sources/rswift/Rswift.swift @@ -10,6 +10,6 @@ import Foundation struct Rswift { - static let version = "5.1.0" + static let version = "5.2.0" static let lastRunFile = "rswift-lastrun" }