Skip to content

Commit fcc406d

Browse files
committed
Releasing version 3.3.0.
1 parent 6d834cd commit fcc406d

File tree

5 files changed

+21
-33
lines changed

5 files changed

+21
-33
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
33

44
# Next
55

6+
## [3.3.0](https://github.com/MLSDev/LoadableViews/releases/tag/3.3.0)
7+
68
* Added convenience methods, that allow to resize view properly if view is using AutoLayout and can determine it's desired size: `compressedLayout()`, `expandedLayout()` and `systemLayout(fittingSize:, horizontalPriority:, verticalPriority:)`.
79
* Dropped support for Swift 3.
810

Example/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.2.0</string>
18+
<string>3.3.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

LoadableViews.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "LoadableViews"
3-
s.version = "3.2.0"
3+
s.version = "3.3.0"
44
s.summary = "Easiest way to load view classes into another XIB or storyboard."
55
s.homepage = "https://github.com/MLSDev/LoadableViews"
66
s.screenshots = "https://github.com/MLSDev/LoadableViews/raw/master/wtf_cat_designable.png"

Supporting Files/Tests.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.2.0</string>
18+
<string>3.3.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

fastlane/README.md

Lines changed: 16 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -8,55 +8,41 @@ Make sure you have the latest version of the Xcode command line tools installed:
88
xcode-select --install
99
```
1010

11-
## Choose your installation method:
12-
13-
<table width="100%" >
14-
<tr>
15-
<th width="33%"><a href="http://brew.sh">Homebrew</a></td>
16-
<th width="33%">Installer Script</td>
17-
<th width="33%">Rubygems</td>
18-
</tr>
19-
<tr>
20-
<td width="33%" align="center">macOS</td>
21-
<td width="33%" align="center">macOS</td>
22-
<td width="33%" align="center">macOS or Linux with Ruby 2.0.0 or above</td>
23-
</tr>
24-
<tr>
25-
<td width="33%"><code>brew cask install fastlane</code></td>
26-
<td width="33%"><a href="https://download.fastlane.tools">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>
27-
<td width="33%"><code>sudo gem install fastlane -NV</code></td>
28-
</tr>
29-
</table>
11+
Install _fastlane_ using
12+
```
13+
[sudo] gem install fastlane -NV
14+
```
15+
or alternatively using `brew cask install fastlane`
3016

3117
# Available Actions
18+
### test_ios12
19+
```
20+
fastlane test_ios12
21+
```
22+
3223
### test_ios11
3324
```
3425
fastlane test_ios11
3526
```
3627

37-
### test_ios10
28+
### test_tvos12
3829
```
39-
fastlane test_ios10
30+
fastlane test_tvos12
4031
```
4132

4233
### test_tvos11
4334
```
4435
fastlane test_tvos11
4536
```
4637

47-
### test_tvos10
48-
```
49-
fastlane test_tvos10
50-
```
51-
52-
### test_ios10_legacy
38+
### test_ios_swift4
5339
```
54-
fastlane test_ios10_legacy
40+
fastlane test_ios_swift4
5541
```
5642

57-
### test_tvos10_legacy
43+
### test_tvos_swift4
5844
```
59-
fastlane test_tvos10_legacy
45+
fastlane test_tvos_swift4
6046
```
6147

6248
### pod_lint

0 commit comments

Comments
 (0)