Skip to content

Commit

Permalink
Update the version to 2.8.4 and use Swinject 2.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
KarinBerg committed Oct 4, 2023
1 parent da0564f commit c8f265e
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .Package.test.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let package = Package(
targets: ["SwinjectAutoregistration"])
],
dependencies: [
.package(url: "https://github.com/Swinject/Swinject.git", from: "2.8.3")
.package(url: "https://github.com/Swinject/Swinject.git", from: "2.8.4")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "Swinject/Swinject" ~> 2.8.3
github "Swinject/Swinject" ~> 2.8.4
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "Swinject/Swinject" "2.8.3"
github "Swinject/Swinject" "2.8.4"
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ let package = Package(
name: "SwinjectAutoregistration-Dynamic",
type: .dynamic,
targets: ["SwinjectAutoregistration"])

],
dependencies: [
.package(url: "https://github.com/Swinject/Swinject.git", from: "2.8.3")
.package(url: "https://github.com/Swinject/Swinject.git", from: "2.8.4")
],
targets: [
.target(
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ Swinject is available through [Carthage](https://github.com/Carthage/Carthage),
To install Swinject with Carthage, add the following line to your `Cartfile`.

```
github "Swinject/Swinject" "2.8.3"
github "Swinject/SwinjectAutoregistration" "2.8.3"
github "Swinject/Swinject" "2.8.4"
github "Swinject/SwinjectAutoregistration" "2.8.4"
```

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).
Expand All @@ -39,8 +39,8 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '11.0' # or platform :osx, '10.13' if your target is OS X.
use_frameworks!

pod 'Swinject', '2.8.3'
pod 'SwinjectAutoregistration', '2.8.3'
pod 'Swinject', '2.8.4'
pod 'SwinjectAutoregistration', '2.8.4'
```

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

```swift
dependencies: [
.package(url: "https://github.com/Swinject/SwinjectAutoregistration.git", from: "2.8.3")
.package(url: "https://github.com/Swinject/SwinjectAutoregistration.git", from: "2.8.4")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>2.8.3</string>
<string>2.8.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
4 changes: 2 additions & 2 deletions SwinjectAutoregistration.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SwinjectAutoregistration'
s.version = "2.8.3"
s.version = "2.8.4"
s.summary = 'Autoregistration for Swinject'
s.description = <<-DESC
SwinjectAutoregistration is an extension of Swinject that allows to automatically inject dependencies into registered services.
Expand All @@ -18,5 +18,5 @@ SwinjectAutoregistration is an extension of Swinject that allows to automaticall
s.requires_arc = true
s.swift_version = '5.0'
s.source_files = 'Sources/**/*.{swift,h}'
s.dependency 'Swinject', '~> 2.8.3'
s.dependency 'Swinject', '~> 2.8.4'
end
2 changes: 1 addition & 1 deletion Tests/Info.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>2.8.3</string>
<string>2.8.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit c8f265e

Please sign in to comment.