Skip to content

Commit

Permalink
Prepare 4.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nvzqz committed Apr 5, 2017
1 parent 61a85b1 commit d2427f3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion FileKit.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "FileKit"
s.version = "4.0.0"
s.version = "4.0.1"
s.summary = "Simple and expressive file management in Swift."
s.homepage = "https://github.com/nvzqz/FileKit"
s.license = { :type => "MIT", :file => "LICENSE.md" }
Expand Down
8 changes: 4 additions & 4 deletions FileKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -807,8 +807,8 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
CURRENT_RELEASE_NUMBER = 11;
CURRENT_RELEASE_VERSION = 4.0.0;
CURRENT_RELEASE_NUMBER = 12;
CURRENT_RELEASE_VERSION = 4.0.1;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand Down Expand Up @@ -859,8 +859,8 @@
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 1;
CURRENT_RELEASE_NUMBER = 11;
CURRENT_RELEASE_VERSION = 4.0.0;
CURRENT_RELEASE_NUMBER = 12;
CURRENT_RELEASE_VERSION = 4.0.1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ to learn more.
```ruby
use_frameworks!

pod 'FileKit', '~> 4.0.0'
pod 'FileKit', '~> 4.0.1'
```

2. Run `pod install` and open the `.xcworkspace` file to launch Xcode.
Expand Down
6 changes: 3 additions & 3 deletions Sources/FileKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
///
/// - Copyright: [MIT License](https://opensource.org/licenses/MIT)
///
/// - Version: [v4.0.0](https://github.com/nvzqz/FileKit/releases/tag/v4.0.0)
/// - Version: [v4.0.1](https://github.com/nvzqz/FileKit/releases/tag/v4.0.1)
///
/// - Requires: Xcode 8, Swift 3.0
///
Expand All @@ -42,10 +42,10 @@ public enum FileKitInfo {
/// The current version.
///
/// FileKit follows [Semantic Versioning v2.0.0](http://semver.org/).
public static let version = "v4.0.0"
public static let version = "v4.0.1"

/// The current release.
public static let release = 11
public static let release = 12

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

0 comments on commit d2427f3

Please sign in to comment.