Skip to content

Commit 504343a

Browse files
committed
Preparing for the 5.1.0 release
1 parent eb990b6 commit 504343a

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

Changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 5.1.0
2+
3+
- WatchOS support (by @lammertw)
4+
- Introduced R.id for accessibility identifiers
5+
- Add generateUITestFile option
6+
- Fix order of imports (by @mfcollins3)
7+
- Mint support
8+
- Info plist support
9+
- Fix fonts also available in R.file
10+
111
## 5.1.0.alpha.4
212

313
- Also generate a11y identifiers for app generated file

Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ DEPENDENCIES:
77
- SWRevealViewController
88

99
SPEC REPOS:
10-
https://github.com/cocoapods/specs.git:
10+
trunk:
1111
- SWRevealViewController
1212

1313
EXTERNAL SOURCES:
@@ -25,4 +25,4 @@ SPEC CHECKSUMS:
2525

2626
PODFILE CHECKSUM: feb2d125d56abaa9101403aedbf488a7d5445eab
2727

28-
COCOAPODS: 1.7.5
28+
COCOAPODS: 1.8.4

R.swift.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = "R.swift"
4-
spec.version = "5.1.0.alpha.4"
4+
spec.version = "5.1.0"
55
spec.license = "MIT"
66

77
spec.summary = "Get strong typed, autocompleted resources like images, fonts and segues in Swift projects"
@@ -28,7 +28,7 @@ Pod::Spec.new do |spec|
2828
spec.tvos.deployment_target = '9.0'
2929
spec.watchos.deployment_target = '2.2'
3030

31-
spec.dependency "R.swift.Library", "~> 5.1.0.alpha.1"
31+
spec.dependency "R.swift.Library", "~> 5.1.0"
3232

3333
spec.preserve_paths = "rswift"
3434

Sources/rswift/Rswift.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
import Foundation
1111

1212
struct Rswift {
13-
static let version = "5.1.0.alpha.4"
13+
static let version = "5.1.0"
1414
static let lastRunFile = "rswift-lastrun"
1515
}

0 commit comments

Comments
 (0)