Skip to content

Commit

Permalink
1.0.2 preps
Browse files Browse the repository at this point in the history
  • Loading branch information
kvs-coder committed Apr 2, 2021
1 parent 2d5d433 commit aa95086
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.0.2] - 02.04.2021.

* Add BlocTest

## [1.0.1] - 18.03.2021.

* Incapsulating Bloc
Expand Down
16 changes: 16 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PODS:
- SwiftBloc (1.0.1)

DEPENDENCIES:
- SwiftBloc (from `../`)

EXTERNAL SOURCES:
SwiftBloc:
:path: "../"

SPEC CHECKSUMS:
SwiftBloc: c051dd14cfc932200a3fd27d14e12124a4ae7741

PODFILE CHECKSUM: a328c1d5c47373468c0f027e420b98fc6ea4155e

COCOAPODS: 1.10.1
4 changes: 2 additions & 2 deletions Example/SwiftBloc.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.0.2;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -528,7 +528,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MARKETING_VERSION = 1.0.1;
MARKETING_VERSION = 1.0.2;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
Expand Down
10 changes: 10 additions & 0 deletions Example/SwiftBloc.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ pod 'SwiftBloc'
or

```ruby
pod 'SwiftBloc', '~> 1.0.1'
pod 'SwiftBloc', '~> 1.0'
```

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

```swift
dependencies: [
.package(url: "https://github.com/VictorKachalov/SwiftBloc.git", from: "1.0.1")
.package(url: "https://github.com/VictorKachalov/SwiftBloc.git", from: "1.0.2")
]
```

Expand All @@ -276,7 +276,7 @@ dependencies: [
Add the line in your cartfile

```ruby
github "VictorKachalov/SwiftBloc" "1.0.1"
github "VictorKachalov/SwiftBloc" "1.0.2"
```

## Author
Expand Down
2 changes: 1 addition & 1 deletion SwiftBloc.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'SwiftBloc'
s.version = '1.0.1'
s.version = '1.0.2'
s.summary = 'SwiftBloc. A state management library'
s.swift_versions = '5.3'
s.description = 'Separates presentation from business logic. Ideal for testability and reusability.'
Expand Down

0 comments on commit aa95086

Please sign in to comment.