Skip to content

Commit

Permalink
version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kvs-coder committed Mar 4, 2021
1 parent ae2847e commit bb2b8b1
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 30 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
## [0.1.0] - 04.03.2021.
## [1.0.0] - 04.03.2021.

* Bloc, Cubit, BlocView for state managing
2 changes: 2 additions & 0 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

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

40 changes: 20 additions & 20 deletions Example/Pods/Target Support Files/SwiftBloc/SwiftBloc-Info.plist

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

2 changes: 2 additions & 0 deletions Example/SwiftBloc.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -471,6 +471,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MARKETING_VERSION = 1.0.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -519,6 +520,7 @@
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
MARKETING_VERSION = 1.0.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
Expand Down
4 changes: 2 additions & 2 deletions Example/SwiftBloc/CubitContentView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
// ViewController.swift
// SwiftBloc
//
// Created by v.kachalov on 02/27/2021.
// Copyright (c) 2021 v.kachalov. All rights reserved.
// Created by Victor Kachalov on 02/27/2021.
// Copyright (c) 2021 Victor Kachalov. All rights reserved.
//

import SwiftBloc
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ pod 'SwiftBloc'
or

```ruby
pod 'SwiftBloc', '~> 0.1.0'
pod 'SwiftBloc', '~> 1.0.0'
```

### Swift Package Manager
Expand All @@ -285,7 +285,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: "0.1.0")
.package(url: "https://github.com/VictorKachalov/SwiftBloc.git", from: "1.0.0")
]
```

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

```ruby
github "VictorKachalov/SwiftBloc" "0.1.0"
github "VictorKachalov/SwiftBloc" "1.0.0"
```

## Author
Expand Down
9 changes: 5 additions & 4 deletions SwiftBloc.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@

Pod::Spec.new do |s|
s.name = 'SwiftBloc'
s.version = '0.1.0'
s.version = '1.0.0'
s.summary = 'SwiftBloc. A state management library'
s.swift_versions = '5.3'
s.description = 'Separates presentation from business logic. Ideal for testability and reusability.'
s.homepage = 'https://github.com/v.kachalov/SwiftBloc'
s.homepage = 'https://github.com/VictorKachalov/SwiftBloc'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'v.kachalov' => 'v.kachalov@thalia.de' }
s.source = { :git => 'https://github.com/v.kachalov/SwiftBloc.git', :tag => s.version.to_s }
s.author = { 'VictorKachalov' => 'victorkachalov@gmail.com' }
s.source = { :git => 'https://github.com/VictorKachalov/SwiftBloc.git', :tag => s.version.to_s }
s.social_media_url = 'https://www.facebook.com/profile.php?id=1700091944'
s.platform = :ios, '13.0'
s.ios.deployment_target = '13.0'
Expand Down

0 comments on commit bb2b8b1

Please sign in to comment.