Skip to content

Commit fd9ffae

Browse files
authored
Merge pull request #91 from gizemfitoz/update-version
Update Swinject version to 2.9.1
2 parents 89f9357 + 4779924 commit fd9ffae

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

.Package.test.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ let package = Package(
1010
targets: ["SwinjectAutoregistration"])
1111
],
1212
dependencies: [
13-
.package(url: "https://github.com/Swinject/Swinject.git", from: "2.8.4")
13+
.package(url: "https://github.com/Swinject/Swinject.git", from: "2.9.1")
1414
],
1515
targets: [
1616
.target(

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "Swinject/Swinject" ~> 2.8.4
1+
github "Swinject/Swinject" ~> 2.9.1

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github "Swinject/Swinject" "2.8.4"
1+
github "Swinject/Swinject" "2.9.1"

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let package = Package(
1515

1616
],
1717
dependencies: [
18-
.package(url: "https://github.com/Swinject/Swinject.git", from: "2.8.4")
18+
.package(url: "https://github.com/Swinject/Swinject.git", from: "2.9.1")
1919
],
2020
targets: [
2121
.target(

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Swinject is available through [Carthage](https://github.com/Carthage/Carthage),
2424
To install Swinject with Carthage, add the following line to your `Cartfile`.
2525

2626
```
27-
github "Swinject/Swinject" "2.8.4"
28-
github "Swinject/SwinjectAutoregistration" "2.8.4"
27+
github "Swinject/Swinject" "2.9.1"
28+
github "Swinject/SwinjectAutoregistration" "2.9.1"
2929
```
3030

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

42-
pod 'Swinject', '2.8.4'
43-
pod 'SwinjectAutoregistration', '2.8.4'
42+
pod 'Swinject', '2.9.1'
43+
pod 'SwinjectAutoregistration', '2.9.1'
4444
```
4545

4646
Then run `pod install` command. For details of the installation and usage of CocoaPods, visit [its official website](https://cocoapods.org).
@@ -51,7 +51,7 @@ in `Package.swift` add the following:
5151

5252
```swift
5353
dependencies: [
54-
.package(url: "https://github.com/Swinject/SwinjectAutoregistration.git", from: "2.8.4")
54+
.package(url: "https://github.com/Swinject/SwinjectAutoregistration.git", from: "2.9.1")
5555
],
5656
targets: [
5757
.target(

Sources/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>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.8.4</string>
18+
<string>2.9.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

SwinjectAutoregistration.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwinjectAutoregistration'
3-
s.version = "2.8.4"
3+
s.version = "2.9.1"
44
s.summary = 'Autoregistration for Swinject'
55
s.description = <<-DESC
66
SwinjectAutoregistration is an extension of Swinject that allows to automatically inject dependencies into registered services.
@@ -18,5 +18,5 @@ SwinjectAutoregistration is an extension of Swinject that allows to automaticall
1818
s.requires_arc = true
1919
s.swift_version = '5.0'
2020
s.source_files = 'Sources/**/*.{swift,h}'
21-
s.dependency 'Swinject', '~> 2.8.4'
21+
s.dependency 'Swinject', '~> 2.9.1'
2222
end

Tests/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>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.8.4</string>
18+
<string>2.9.1</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)