Bump to v1.1.0
This commit is contained in:
parent
091190836d
commit
1111b2df17
|
@ -1,6 +1,7 @@
|
|||
# Change log
|
||||
|
||||
## Version 1.1.0
|
||||
## [Version 1.1.0](https://github.com/yannickl/Reactions/releases/tag/1.1.0)
|
||||
*Released on 2015-11-08.*
|
||||
|
||||
- Adding the `setDefaultText` method to the `ReactionSummary` with default localized texts
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>FMWK</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.4</string>
|
||||
<string>1.1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||
<key>NSPrincipalClass</key>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0.4</string>
|
||||
<string>1.1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
|
|
|
@ -37,7 +37,7 @@ class ViewController: UIViewController, ReactionFeedbackDelegate {
|
|||
@IBOutlet weak var reactionSummary: ReactionSummary! {
|
||||
didSet {
|
||||
reactionSummary.reactions = Reaction.facebook.all
|
||||
reactionSummary.text = "You, Chris Lattner, and 16 others"
|
||||
reactionSummary.setDefaultText(withTotalNumberOfPeople: 4, includingYou: true)
|
||||
reactionSummary.config = ReactionSummaryConfig {
|
||||
$0.spacing = 8
|
||||
$0.iconMarging = 2
|
||||
|
|
|
@ -166,7 +166,7 @@ source 'https://github.com/CocoaPods/Specs.git'
|
|||
platform :ios, '8.0'
|
||||
|
||||
use_frameworks!
|
||||
pod 'Reactions', '~> 1.0.4'
|
||||
pod 'Reactions', '~> 1.1.0'
|
||||
```
|
||||
|
||||
Install into your project:
|
||||
|
@ -197,7 +197,7 @@ $ brew install carthage
|
|||
To integrate `Reactions` into your Xcode project using Carthage, specify it in your `Cartfile` file:
|
||||
|
||||
```ogdl
|
||||
github "yannickl/Reactions" >= 1.0.4
|
||||
github "yannickl/Reactions" >= 1.1.0
|
||||
```
|
||||
|
||||
#### Swift Package Manager
|
||||
|
@ -210,7 +210,7 @@ let package = Package(
|
|||
name: "YOUR_PROJECT_NAME",
|
||||
targets: [],
|
||||
dependencies: [
|
||||
.Package(url: "https://github.com/yannickl/Reactions.git", versions: "1.0.4" ..< Version.max)
|
||||
.Package(url: "https://github.com/yannickl/Reactions.git", versions: "1.1.0" ..< Version.max)
|
||||
]
|
||||
)
|
||||
```
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Pod::Spec.new do |s|
|
||||
s.name = 'Reactions'
|
||||
s.version = '1.0.4'
|
||||
s.version = '1.1.0'
|
||||
s.license = 'MIT'
|
||||
s.summary = 'Fully customizable Facebook reactions control'
|
||||
s.homepage = 'https://github.com/yannickl/Reactions'
|
||||
|
|
Loading…
Reference in New Issue