Skip to content

Commit c5b9ba1

Browse files
committed
Preparing for the 3.1.0 release
1 parent cd98309 commit c5b9ba1

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

Changelog.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 3.1.0
2+
3+
New features:
4+
5+
- Support for `--accessLevel public` flag that makes all `R` things public (handy for libraries)
6+
- Handle multiple locales for resource files (`R.file.*`) by @tomlokhorst
7+
- Add some more checks while parsing nibs by @Tvede-dk
8+
- Use fully qualified names in the generated file to prevent naming conflicts
9+
- Validation for custom fonts and images in nibs
10+
11+
Deprecated:
12+
- Deprecated `assertValid` method, use `validate` from a test instead
13+
14+
Bugfix:
15+
16+
- Duplicate printed errors on storyboards
17+
- Validation generated not compilable code when duplicate storyboard identifiers where present
18+
119
## 3.0.0
220

321
New features:

R.swift.podspec

+1-1
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 = "3.0.0"
4+
spec.version = "3.1.0"
55
spec.license = "MIT"
66

77
spec.summary = "Get strong typed, autocompleted resources like images, fonts and segues in Swift projects"

R.swift/version.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99

1010
import Foundation
1111

12-
let version = "3.0.0"
12+
let version = "3.1.0"

0 commit comments

Comments
 (0)