Skip to content

Commit bb2b8b1

Browse files
committed
version 1.0.0
1 parent ae2847e commit bb2b8b1

File tree

7 files changed

+35
-30
lines changed

7 files changed

+35
-30
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
## [0.1.0] - 04.03.2021.
1+
## [1.0.0] - 04.03.2021.
22

33
* Bloc, Cubit, BlocView for state managing

Example/Pods/Pods.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Target Support Files/SwiftBloc/SwiftBloc-Info.plist

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/SwiftBloc.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -471,6 +471,7 @@
471471
GCC_WARN_UNUSED_FUNCTION = YES;
472472
GCC_WARN_UNUSED_VARIABLE = YES;
473473
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
474+
MARKETING_VERSION = 1.0.0;
474475
MTL_ENABLE_DEBUG_INFO = YES;
475476
ONLY_ACTIVE_ARCH = YES;
476477
SDKROOT = iphoneos;
@@ -519,6 +520,7 @@
519520
GCC_WARN_UNUSED_FUNCTION = YES;
520521
GCC_WARN_UNUSED_VARIABLE = YES;
521522
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
523+
MARKETING_VERSION = 1.0.0;
522524
MTL_ENABLE_DEBUG_INFO = NO;
523525
SDKROOT = iphoneos;
524526
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";

Example/SwiftBloc/CubitContentView.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// ViewController.swift
33
// SwiftBloc
44
//
5-
// Created by v.kachalov on 02/27/2021.
6-
// Copyright (c) 2021 v.kachalov. All rights reserved.
5+
// Created by Victor Kachalov on 02/27/2021.
6+
// Copyright (c) 2021 Victor Kachalov. All rights reserved.
77
//
88

99
import SwiftBloc

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ pod 'SwiftBloc'
275275
or
276276

277277
```ruby
278-
pod 'SwiftBloc', '~> 0.1.0'
278+
pod 'SwiftBloc', '~> 1.0.0'
279279
```
280280

281281
### Swift Package Manager
@@ -285,7 +285,7 @@ To install it, simply add the following lines to your Package.swift file
285285

286286
```swift
287287
dependencies: [
288-
.package(url: "https://github.com/VictorKachalov/SwiftBloc.git", from: "0.1.0")
288+
.package(url: "https://github.com/VictorKachalov/SwiftBloc.git", from: "1.0.0")
289289
]
290290
```
291291

@@ -294,7 +294,7 @@ dependencies: [
294294
Add the line in your cartfile
295295

296296
```ruby
297-
github "VictorKachalov/SwiftBloc" "0.1.0"
297+
github "VictorKachalov/SwiftBloc" "1.0.0"
298298
```
299299

300300
## Author

SwiftBloc.podspec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'SwiftBloc'
11-
s.version = '0.1.0'
11+
s.version = '1.0.0'
1212
s.summary = 'SwiftBloc. A state management library'
13+
s.swift_versions = '5.3'
1314
s.description = 'Separates presentation from business logic. Ideal for testability and reusability.'
14-
s.homepage = 'https://github.com/v.kachalov/SwiftBloc'
15+
s.homepage = 'https://github.com/VictorKachalov/SwiftBloc'
1516
s.license = { :type => 'MIT', :file => 'LICENSE' }
16-
s.author = { 'v.kachalov' => '[email protected]' }
17-
s.source = { :git => 'https://github.com/v.kachalov/SwiftBloc.git', :tag => s.version.to_s }
17+
s.author = { 'VictorKachalov' => '[email protected]' }
18+
s.source = { :git => 'https://github.com/VictorKachalov/SwiftBloc.git', :tag => s.version.to_s }
1819
s.social_media_url = 'https://www.facebook.com/profile.php?id=1700091944'
1920
s.platform = :ios, '13.0'
2021
s.ios.deployment_target = '13.0'

0 commit comments

Comments
 (0)