Skip to content

Commit 2f48a5e

Browse files
committed
Update podspecs
1 parent a34888d commit 2f48a5e

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -694,6 +694,7 @@ func testSecond() {
694694
// userService inject success
695695
}
696696
```
697+
697698
To inject a service from a provider with parameters, use `@ServiceParamsInject`. Parameters can be set immediately or later.
698699
Parameters can only be specified once, until they are set, the service will not be injected.
699700

ServiceContainerKit.podspec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Pod::Spec.new do |s|
2+
version = '3.0.0'
3+
24
s.name = "ServiceContainerKit"
3-
s.version = "3.0.0-rc1"
5+
s.version = version
46
s.summary = "Kit to create your own IoC Container or ServiceLocator."
57
s.description = <<-DESC
68
Written in Swift.

ServiceInjects.podspec

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
Pod::Spec.new do |s|
2+
version = '3.0.0'
3+
24
s.name = "ServiceInjects"
3-
s.version = "3.0.0-rc1"
4-
s.summary = "Simple services and entities injects"
5+
s.version = version
6+
s.summary = "Simple injects for services and entities"
57
s.description = <<-DESC
68
Written in Swift.
79
ServiceInject used for injects services in presentation layer.
@@ -20,7 +22,7 @@ Pod::Spec.new do |s|
2022
s.tvos.deployment_target = '10.0'
2123
s.watchos.deployment_target = '3.0'
2224

23-
s.dependency 'ServiceContainerKit', '3.0.0-rc1'
25+
s.dependency 'ServiceContainerKit', version
2426
s.source_files = ['ServiceInjects/Sources/*.swift', 'ServiceInjects/Sources/*.h']
2527
s.public_header_files = 'ServiceInjects/Sources/*.h'
2628

0 commit comments

Comments
 (0)