Skip to content

Commit 28767c8

Browse files
committed
Prepare 4.0.0 release
1 parent 9e075da commit 28767c8

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
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 = "3.0.0"
3+
s.version = "4.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
@@ -801,8 +801,8 @@
801801
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
802802
COPY_PHASE_STRIP = NO;
803803
CURRENT_PROJECT_VERSION = 1;
804-
CURRENT_RELEASE_NUMBER = 10;
805-
CURRENT_RELEASE_VERSION = 3.0.0;
804+
CURRENT_RELEASE_NUMBER = 11;
805+
CURRENT_RELEASE_VERSION = 4.0.0;
806806
DEBUG_INFORMATION_FORMAT = dwarf;
807807
ENABLE_STRICT_OBJC_MSGSEND = YES;
808808
ENABLE_TESTABILITY = YES;
@@ -851,8 +851,8 @@
851851
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
852852
COPY_PHASE_STRIP = NO;
853853
CURRENT_PROJECT_VERSION = 1;
854-
CURRENT_RELEASE_NUMBER = 10;
855-
CURRENT_RELEASE_VERSION = 3.0.0;
854+
CURRENT_RELEASE_NUMBER = 11;
855+
CURRENT_RELEASE_VERSION = 4.0.0;
856856
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
857857
ENABLE_NS_ASSERTIONS = NO;
858858
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', '~> 3.0.0'
62+
pod 'FileKit', '~> 4.0.0'
6363
```
6464

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

Sources/FileKit.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,19 +33,19 @@
3333
///
3434
/// - Copyright: [MIT License](https://opensource.org/licenses/MIT)
3535
///
36-
/// - Version: [v3.0.0](https://github.com/nvzqz/FileKit/releases/tag/v3.0.0)
36+
/// - Version: [v4.0.0](https://github.com/nvzqz/FileKit/releases/tag/v4.0.0)
3737
///
38-
/// - Requires: Xcode 7+, Swift 2.0+
38+
/// - Requires: Xcode 8, Swift 3.0
3939
///
4040
public enum FileKitInfo {
4141

4242
/// The current version.
4343
///
4444
/// FileKit follows [Semantic Versioning v2.0.0](http://semver.org/).
45-
public static let version = "v3.0.0"
45+
public static let version = "v4.0.0"
4646

4747
/// The current release.
48-
public static let release = 10
48+
public static let release = 11
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)