Skip to content

Commit

Permalink
Merge pull request #11 from yoichitgy/v1.0.0
Browse files Browse the repository at this point in the history
Release preparation of v1.0.0
  • Loading branch information
yoichitgy authored Feb 25, 2017
2 parents c77eecb + 8d39864 commit f778881
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SwinjectPropertyLoader
[![CocoaPods Version](https://img.shields.io/cocoapods/v/SwinjectPropertyLoader.svg?style=flat)](http://cocoapods.org/pods/SwinjectPropertyLoader)
[![License](https://img.shields.io/cocoapods/l/SwinjectPropertyLoader.svg?style=flat)](http://cocoapods.org/pods/SwinjectPropertyLoader)
[![Platform](https://img.shields.io/cocoapods/p/SwinjectPropertyLoader.svg?style=flat)](http://cocoapods.org/pods/SwinjectPropertyLoader)
[![Swift Version](https://img.shields.io/badge/Swift-2.2--3.0-F16D39.svg?style=flat)](https://developer.apple.com/swift)
[![Swift Version](https://img.shields.io/badge/Swift-2.2--3.0.x-F16D39.svg?style=flat)](https://developer.apple.com/swift)


SwinjectPropertyLoader is an extension of Swinject to load property values from resources that are bundled with your application or framework.
Expand All @@ -16,7 +16,7 @@ SwinjectPropertyLoader is an extension of Swinject to load property values from
- iOS 8.0+ / Mac OS X 10.10+ / watchOS 2.0+ / tvOS 9.0+
- Swift 2.2 or 2.3
- Xcode 7.0+
- Swift 3
- Swift 3.0.x
- Xcode 8.0+
- Carthage 0.18+ (if you use)
- CocoaPods 1.1.1+ (if you use)
Expand All @@ -30,8 +30,8 @@ Swinject is available through [Carthage](https://github.com/Carthage/Carthage) o
To install Swinject with Carthage, add the following line to your `Cartfile`.

```
github "Swinject/Swinject" "2.0.0"
github "Swinject/SwinjectPropertyLoader" "1.0.0"
github "Swinject/Swinject" "~> 2.0.0"
github "Swinject/SwinjectPropertyLoader" "~> 1.0.0"
```

Then run `carthage update --no-use-binaries` command or just `carthage update`. For details of the installation and usage of Carthage, visit [its project page](https://github.com/Carthage/Carthage).
Expand All @@ -46,8 +46,8 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0' # or platform :osx, '10.10' if your target is OS X.
use_frameworks!

pod 'Swinject', '2.0.0'
pod 'SwinjectPropertyLoader', '2.0.0'
pod 'Swinject', '~> 2.0.0'
pod 'SwinjectPropertyLoader', '~> 2.0.0'
```

Then run `pod install` command. For details of the installation and usage of CocoaPods, visit [its official website](https://cocoapods.org).
Expand Down
2 changes: 1 addition & 1 deletion SwinjectPropertyLoader.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ Pod::Spec.new do |s|
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.tvos.deployment_target = '9.0'
s.dependency 'Swinject', '2.0.0'
s.dependency 'Swinject', '~> 2.0.0'
s.requires_arc = true
end

0 comments on commit f778881

Please sign in to comment.