From 3f11c0e96d8f07607b112dbc14826e0e7f972823 Mon Sep 17 00:00:00 2001 From: Nikolai Vazquez Date: Wed, 20 Jul 2016 19:14:32 -0400 Subject: [PATCH] Prepare 3.0.0 release --- FileKit.podspec | 2 +- FileKit.xcodeproj/project.pbxproj | 8 ++++---- README.md | 2 +- Sources/FileKit.swift | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/FileKit.podspec b/FileKit.podspec index d65857e..6c3e94a 100644 --- a/FileKit.podspec +++ b/FileKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "FileKit" - s.version = "2.0.0" + s.version = "3.0.0" s.summary = "Simple and expressive file management in Swift." s.homepage = "https://github.com/nvzqz/FileKit" s.license = { :type => "MIT", :file => "LICENSE.md" } diff --git a/FileKit.xcodeproj/project.pbxproj b/FileKit.xcodeproj/project.pbxproj index e8d27cb..c0293c9 100644 --- a/FileKit.xcodeproj/project.pbxproj +++ b/FileKit.xcodeproj/project.pbxproj @@ -762,8 +762,8 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; CURRENT_PROJECT_VERSION = 1; - CURRENT_RELEASE_NUMBER = 9; - CURRENT_RELEASE_VERSION = 2.0.0; + CURRENT_RELEASE_NUMBER = 10; + CURRENT_RELEASE_VERSION = 3.0.0; DEBUG_INFORMATION_FORMAT = dwarf; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; @@ -811,8 +811,8 @@ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; CURRENT_PROJECT_VERSION = 1; - CURRENT_RELEASE_NUMBER = 9; - CURRENT_RELEASE_VERSION = 2.0.0; + CURRENT_RELEASE_NUMBER = 10; + CURRENT_RELEASE_VERSION = 3.0.0; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; diff --git a/README.md b/README.md index 2ed229f..b622edf 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ to learn more. ```ruby use_frameworks! - pod 'FileKit', '~> 2.0.0' + pod 'FileKit', '~> 3.0.0' ``` 2. Run `pod install` and open the `.xcworkspace` file to launch Xcode. diff --git a/Sources/FileKit.swift b/Sources/FileKit.swift index 4c54876..21f74c5 100644 --- a/Sources/FileKit.swift +++ b/Sources/FileKit.swift @@ -33,7 +33,7 @@ /// /// - Copyright: [MIT License](https://opensource.org/licenses/MIT) /// -/// - Version: [v2.0.0](https://github.com/nvzqz/FileKit/releases/tag/v2.0.0) +/// - Version: [v3.0.0](https://github.com/nvzqz/FileKit/releases/tag/v3.0.0) /// /// - Requires: Xcode 7+, Swift 2.0+ /// @@ -42,10 +42,10 @@ public enum FileKit { /// The current version. /// /// FileKit follows [Semantic Versioning v2.0.0](http://semver.org/). - public static let version = "v2.0.0" + public static let version = "v3.0.0" /// The current release. - public static let release = 9 + public static let release = 10 /// FileKit is licensed under the [MIT License](https://opensource.org/licenses/MIT). public static let license = "MIT"