Skip to content

Commit 9b3b368

Browse files
committed
1.0.3 preps
1 parent c0b472e commit 9b3b368

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## [1.0.2] - 02.04.2021.
22

3+
* Documentation typo fixes
4+
5+
## [1.0.2] - 02.04.2021.
6+
37
* Add BlocTest
48

59
## [1.0.1] - 18.03.2021.

Example/SwiftBloc.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@
478478
GCC_WARN_UNUSED_FUNCTION = YES;
479479
GCC_WARN_UNUSED_VARIABLE = YES;
480480
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
481-
MARKETING_VERSION = 1.0.2;
481+
MARKETING_VERSION = 1.0.3;
482482
MTL_ENABLE_DEBUG_INFO = YES;
483483
ONLY_ACTIVE_ARCH = YES;
484484
SDKROOT = iphoneos;
@@ -528,7 +528,7 @@
528528
GCC_WARN_UNUSED_FUNCTION = YES;
529529
GCC_WARN_UNUSED_VARIABLE = YES;
530530
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
531-
MARKETING_VERSION = 1.0.2;
531+
MARKETING_VERSION = 1.0.3;
532532
MTL_ENABLE_DEBUG_INFO = NO;
533533
SDKROOT = iphoneos;
534534
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ pod 'SwiftBloc'
318318
or
319319

320320
```ruby
321-
pod 'SwiftBloc', '~> 1.0'
321+
pod 'SwiftBloc', '~> 1.0.3'
322322
```
323323

324324
### Swift Package Manager
@@ -328,7 +328,7 @@ To install it, simply add the following lines to your Package.swift file
328328

329329
```swift
330330
dependencies: [
331-
.package(url: "https://github.com/VictorKachalov/SwiftBloc.git", from: "1.0.2")
331+
.package(url: "https://github.com/VictorKachalov/SwiftBloc.git", from: "1.0.3")
332332
]
333333
```
334334

@@ -337,7 +337,7 @@ dependencies: [
337337
Add the line in your cartfile
338338

339339
```ruby
340-
github "VictorKachalov/SwiftBloc" "1.0.2"
340+
github "VictorKachalov/SwiftBloc" "1.0.3"
341341
```
342342

343343
## Author

SwiftBloc.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'SwiftBloc'
11-
s.version = '1.0.2'
11+
s.version = '1.0.3'
1212
s.summary = 'SwiftBloc. A state management library'
1313
s.swift_versions = '5.3'
1414
s.description = 'Separates presentation from business logic. Ideal for testability and reusability.'

0 commit comments

Comments
 (0)