Skip to content

Commit aa95086

Browse files
committed
1.0.2 preps
1 parent 2d5d433 commit aa95086

File tree

7 files changed

+44
-6
lines changed

7 files changed

+44
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.0.2] - 02.04.2021.
2+
3+
* Add BlocTest
4+
15
## [1.0.1] - 18.03.2021.
26

37
* Incapsulating Bloc

Example/Podfile.lock

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
PODS:
2+
- SwiftBloc (1.0.1)
3+
4+
DEPENDENCIES:
5+
- SwiftBloc (from `../`)
6+
7+
EXTERNAL SOURCES:
8+
SwiftBloc:
9+
:path: "../"
10+
11+
SPEC CHECKSUMS:
12+
SwiftBloc: c051dd14cfc932200a3fd27d14e12124a4ae7741
13+
14+
PODFILE CHECKSUM: a328c1d5c47373468c0f027e420b98fc6ea4155e
15+
16+
COCOAPODS: 1.10.1

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.1;
481+
MARKETING_VERSION = 1.0.2;
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.1;
531+
MARKETING_VERSION = 1.0.2;
532532
MTL_ENABLE_DEBUG_INFO = NO;
533533
SDKROOT = iphoneos;
534534
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";

Example/SwiftBloc.xcworkspace/contents.xcworkspacedata

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ pod 'SwiftBloc'
257257
or
258258

259259
```ruby
260-
pod 'SwiftBloc', '~> 1.0.1'
260+
pod 'SwiftBloc', '~> 1.0'
261261
```
262262

263263
### Swift Package Manager
@@ -267,7 +267,7 @@ To install it, simply add the following lines to your Package.swift file
267267

268268
```swift
269269
dependencies: [
270-
.package(url: "https://github.com/VictorKachalov/SwiftBloc.git", from: "1.0.1")
270+
.package(url: "https://github.com/VictorKachalov/SwiftBloc.git", from: "1.0.2")
271271
]
272272
```
273273

@@ -276,7 +276,7 @@ dependencies: [
276276
Add the line in your cartfile
277277

278278
```ruby
279-
github "VictorKachalov/SwiftBloc" "1.0.1"
279+
github "VictorKachalov/SwiftBloc" "1.0.2"
280280
```
281281

282282
## 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.1'
11+
s.version = '1.0.2'
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)