From 2ba7dc0f175c824732e9fcd7aca9e152dfc34432 Mon Sep 17 00:00:00 2001 From: Mathijs Kadijk Date: Mon, 3 Sep 2018 15:56:27 +0200 Subject: [PATCH] Preparing for the 5.0.0.alpha.2 release --- Changelog.md | 4 ++++ R.swift.podspec | 4 ++-- Sources/rswift/Rswift.swift | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index b9995f4f..474296b0 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,7 @@ +## 5.0.0.alpha.2 + +- Nib parsing fixes for Xcode 10 from @rafaelnobrepd + ## 5.0.0.alpha.1 - Removed CLR file support, use color resources instead diff --git a/R.swift.podspec b/R.swift.podspec index 032eabc2..e5911dc4 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.0.0.alpha.1" + spec.version = "5.0.0.alpha.2" 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", "~> 5.0.0.alpha.1" + spec.dependency "R.swift.Library", "~> 5.0.0.alpha.2" spec.preserve_paths = "rswift" diff --git a/Sources/rswift/Rswift.swift b/Sources/rswift/Rswift.swift index 0f6371d2..6411dc8b 100644 --- a/Sources/rswift/Rswift.swift +++ b/Sources/rswift/Rswift.swift @@ -10,6 +10,6 @@ import Foundation struct Rswift { - static let version = "5.0.0.alpha.1" + static let version = "5.0.0.alpha.2" static let resourceFileName = "R.generated.swift" }