From d8d82c40c9e020e84c1d81072a5a79a7474b9196 Mon Sep 17 00:00:00 2001 From: Mathijs Kadijk Date: Mon, 19 Jun 2017 21:42:06 +0200 Subject: [PATCH] Preparing for the 4.0.0.alpha.3 release --- Changelog.md | 7 +++++++ R.swift.podspec | 4 ++-- Sources/rswift/Rswift.swift | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index a9ede21c..2b249980 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,10 @@ +## 4.0.0.alpha.3 + +- New color assets are now supported +- Better capitalization is now enabled by default +- Use new XcodeEdit version that warns when your projectfile is corrupt +- Xcode 9/Swift 4/SPM fixes + ## 4.0.0.alpha.2 - Fix incorrectly merged color PR diff --git a/R.swift.podspec b/R.swift.podspec index 6863626e..31c26861 100644 --- a/R.swift.podspec +++ b/R.swift.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |spec| spec.name = "R.swift" - spec.version = "4.0.0.alpha.2" + spec.version = "4.0.0.alpha.3" spec.license = "MIT" spec.summary = "Get strong typed, autocompleted resources like images, fonts and segues in Swift projects" @@ -26,7 +26,7 @@ Pod::Spec.new do |spec| spec.ios.deployment_target = '8.0' spec.tvos.deployment_target = '9.0' - spec.dependency "R.swift.Library", "~> 4.0.0.alpha.1" + spec.dependency "R.swift.Library", "~> 4.0.0.alpha.2" spec.preserve_paths = "rswift" diff --git a/Sources/rswift/Rswift.swift b/Sources/rswift/Rswift.swift index f317340b..5005e46f 100644 --- a/Sources/rswift/Rswift.swift +++ b/Sources/rswift/Rswift.swift @@ -10,6 +10,6 @@ import Foundation struct Rswift { - static let version = "4.0.0.alpha.2" + static let version = "4.0.0.alpha.3" static let resourceFileName = "R.generated.swift" }