Skip to content

Commit

Permalink
Releasing version 3.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
DenTelezhkin committed Apr 6, 2019
1 parent 6d834cd commit fcc406d
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 33 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.

# Next

## [3.3.0](https://github.com/MLSDev/LoadableViews/releases/tag/3.3.0)

* 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:)`.
* Dropped support for Swift 3.

Expand Down
2 changes: 1 addition & 1 deletion Example/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>3.2.0</string>
<string>3.3.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion LoadableViews.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "LoadableViews"
s.version = "3.2.0"
s.version = "3.3.0"
s.summary = "Easiest way to load view classes into another XIB or storyboard."
s.homepage = "https://github.com/MLSDev/LoadableViews"
s.screenshots = "https://github.com/MLSDev/LoadableViews/raw/master/wtf_cat_designable.png"
Expand Down
2 changes: 1 addition & 1 deletion Supporting Files/Tests.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>3.2.0</string>
<string>3.3.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
46 changes: 16 additions & 30 deletions fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,55 +8,41 @@ Make sure you have the latest version of the Xcode command line tools installed:
xcode-select --install
```

## Choose your installation method:

<table width="100%" >
<tr>
<th width="33%"><a href="http://brew.sh">Homebrew</a></td>
<th width="33%">Installer Script</td>
<th width="33%">Rubygems</td>
</tr>
<tr>
<td width="33%" align="center">macOS</td>
<td width="33%" align="center">macOS</td>
<td width="33%" align="center">macOS or Linux with Ruby 2.0.0 or above</td>
</tr>
<tr>
<td width="33%"><code>brew cask install fastlane</code></td>
<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>
<td width="33%"><code>sudo gem install fastlane -NV</code></td>
</tr>
</table>
Install _fastlane_ using
```
[sudo] gem install fastlane -NV
```
or alternatively using `brew cask install fastlane`

# Available Actions
### test_ios12
```
fastlane test_ios12
```

### test_ios11
```
fastlane test_ios11
```

### test_ios10
### test_tvos12
```
fastlane test_ios10
fastlane test_tvos12
```

### test_tvos11
```
fastlane test_tvos11
```

### test_tvos10
```
fastlane test_tvos10
```

### test_ios10_legacy
### test_ios_swift4
```
fastlane test_ios10_legacy
fastlane test_ios_swift4
```

### test_tvos10_legacy
### test_tvos_swift4
```
fastlane test_tvos10_legacy
fastlane test_tvos_swift4
```

### pod_lint
Expand Down

0 comments on commit fcc406d

Please sign in to comment.