Bump to v1.0.1
This commit is contained in:
parent
d658e635f5
commit
c9e1512194
|
@ -1,6 +1,7 @@
|
||||||
# Change log
|
# Change log
|
||||||
|
|
||||||
## Version 1.0.1
|
## [Version 1.0.1](https://github.com/yannickl/Reactions/releases/tag/1.0.1)
|
||||||
|
*Released on 2015-10-09.*
|
||||||
|
|
||||||
- Fixing set reaction in `ReactionSelector`
|
- Fixing set reaction in `ReactionSelector`
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>FMWK</string>
|
<string>FMWK</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.0.0</string>
|
<string>1.0.1</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>$(CURRENT_PROJECT_VERSION)</string>
|
<string>$(CURRENT_PROJECT_VERSION)</string>
|
||||||
<key>NSPrincipalClass</key>
|
<key>NSPrincipalClass</key>
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>1.0.0</string>
|
<string>1.0.1</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>1</string>
|
<string>1</string>
|
||||||
<key>LSRequiresIPhoneOS</key>
|
<key>LSRequiresIPhoneOS</key>
|
||||||
|
|
|
@ -144,7 +144,7 @@ Install CocoaPods if not already available:
|
||||||
$ [sudo] gem install cocoapods
|
$ [sudo] gem install cocoapods
|
||||||
$ pod setup
|
$ pod setup
|
||||||
```
|
```
|
||||||
Go to the directory of your Xcode project, and Create and Edit your *Podfile* and add _DynamicColor_:
|
Go to the directory of your Xcode project, and Create and Edit your *Podfile* and add _Reactions_:
|
||||||
|
|
||||||
``` bash
|
``` bash
|
||||||
$ cd /path/to/MyProject
|
$ cd /path/to/MyProject
|
||||||
|
@ -154,7 +154,7 @@ source 'https://github.com/CocoaPods/Specs.git'
|
||||||
platform :ios, '8.0'
|
platform :ios, '8.0'
|
||||||
|
|
||||||
use_frameworks!
|
use_frameworks!
|
||||||
pod 'Reactions', '~> 1.0.0'
|
pod 'Reactions', '~> 1.0.1'
|
||||||
```
|
```
|
||||||
|
|
||||||
Install into your project:
|
Install into your project:
|
||||||
|
@ -185,7 +185,7 @@ $ brew install carthage
|
||||||
To integrate `Reactions` into your Xcode project using Carthage, specify it in your `Cartfile` file:
|
To integrate `Reactions` into your Xcode project using Carthage, specify it in your `Cartfile` file:
|
||||||
|
|
||||||
```ogdl
|
```ogdl
|
||||||
github "yannickl/Reactions" >= 1.0.0
|
github "yannickl/Reactions" >= 1.0.1
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Swift Package Manager
|
#### Swift Package Manager
|
||||||
|
@ -198,7 +198,7 @@ let package = Package(
|
||||||
name: "YOUR_PROJECT_NAME",
|
name: "YOUR_PROJECT_NAME",
|
||||||
targets: [],
|
targets: [],
|
||||||
dependencies: [
|
dependencies: [
|
||||||
.Package(url: "https://github.com/yannickl/Reactions.git", versions: "1.0.0" ..< Version.max)
|
.Package(url: "https://github.com/yannickl/Reactions.git", versions: "1.0.1" ..< Version.max)
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = 'Reactions'
|
s.name = 'Reactions'
|
||||||
s.version = '1.0.0'
|
s.version = '1.0.1'
|
||||||
s.license = 'MIT'
|
s.license = 'MIT'
|
||||||
s.summary = 'Fully customizable Facebook reactions control'
|
s.summary = 'Fully customizable Facebook reactions control'
|
||||||
s.homepage = 'https://github.com/yannickl/Reactions'
|
s.homepage = 'https://github.com/yannickl/Reactions'
|
||||||
|
|
Loading…
Reference in New Issue