Skip to content

Commit 3f11c0e

Browse files
committed
Prepare 3.0.0 release
1 parent eaf3a98 commit 3f11c0e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

FileKit.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "FileKit"
3-
s.version = "2.0.0"
3+
s.version = "3.0.0"
44
s.summary = "Simple and expressive file management in Swift."
55
s.homepage = "https://github.com/nvzqz/FileKit"
66
s.license = { :type => "MIT", :file => "LICENSE.md" }

FileKit.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -762,8 +762,8 @@
762762
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
763763
COPY_PHASE_STRIP = NO;
764764
CURRENT_PROJECT_VERSION = 1;
765-
CURRENT_RELEASE_NUMBER = 9;
766-
CURRENT_RELEASE_VERSION = 2.0.0;
765+
CURRENT_RELEASE_NUMBER = 10;
766+
CURRENT_RELEASE_VERSION = 3.0.0;
767767
DEBUG_INFORMATION_FORMAT = dwarf;
768768
ENABLE_STRICT_OBJC_MSGSEND = YES;
769769
ENABLE_TESTABILITY = YES;
@@ -811,8 +811,8 @@
811811
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
812812
COPY_PHASE_STRIP = NO;
813813
CURRENT_PROJECT_VERSION = 1;
814-
CURRENT_RELEASE_NUMBER = 9;
815-
CURRENT_RELEASE_VERSION = 2.0.0;
814+
CURRENT_RELEASE_NUMBER = 10;
815+
CURRENT_RELEASE_VERSION = 3.0.0;
816816
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
817817
ENABLE_NS_ASSERTIONS = NO;
818818
ENABLE_STRICT_OBJC_MSGSEND = YES;

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ to learn more.
5959
```ruby
6060
use_frameworks!
6161

62-
pod 'FileKit', '~> 2.0.0'
62+
pod 'FileKit', '~> 3.0.0'
6363
```
6464

6565
2. Run `pod install` and open the `.xcworkspace` file to launch Xcode.

Sources/FileKit.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
///
3434
/// - Copyright: [MIT License](https://opensource.org/licenses/MIT)
3535
///
36-
/// - Version: [v2.0.0](https://github.com/nvzqz/FileKit/releases/tag/v2.0.0)
36+
/// - Version: [v3.0.0](https://github.com/nvzqz/FileKit/releases/tag/v3.0.0)
3737
///
3838
/// - Requires: Xcode 7+, Swift 2.0+
3939
///
@@ -42,10 +42,10 @@ public enum FileKit {
4242
/// The current version.
4343
///
4444
/// FileKit follows [Semantic Versioning v2.0.0](http://semver.org/).
45-
public static let version = "v2.0.0"
45+
public static let version = "v3.0.0"
4646

4747
/// The current release.
48-
public static let release = 9
48+
public static let release = 10
4949

5050
/// FileKit is licensed under the [MIT License](https://opensource.org/licenses/MIT).
5151
public static let license = "MIT"

0 commit comments

Comments
 (0)