Skip to content

Commit

Permalink
Prepare for 2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nvzqz committed Nov 25, 2015
1 parent dbdecd7 commit 29f8d5f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 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 = "1.7.0"
s.version = "2.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" }
Expand Down
4 changes: 4 additions & 0 deletions FileKit.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,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;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
Expand Down Expand Up @@ -680,6 +682,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;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
Expand Down
6 changes: 3 additions & 3 deletions FileKit/Core/FileKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
///
/// - Copyright: [MIT License](https://opensource.org/licenses/MIT)
///
/// - Version: [v1.7.0](https://github.com/nvzqz/FileKit/releases/tag/v1.7.0)
/// - Version: [v2.0.0](https://github.com/nvzqz/FileKit/releases/tag/v2.0.0)
///
/// - Requires: Xcode 7+, Swift 2.0+
///
Expand All @@ -40,10 +40,10 @@ public enum FileKit {
/// The current version.
///
/// FileKit follows [Semantic Versioning v2.0.0](http://semver.org/).
public static let version = "v1.7.0"
public static let version = "v2.0.0"

/// The current release.
public static let release = 8
public static let release = 9

/// FileKit is licensed under the [MIT License](https://opensource.org/licenses/MIT).
public static let license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions FileKit/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>$(CURRENT_RELEASE_VERSION)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<string>$(CURRENT_RELEASE_NUMBER)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ to learn more.
```ruby
use_frameworks!

pod 'FileKit', '~> 1.7.0'
pod 'FileKit', '~> 2.0.0'
```

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

0 comments on commit 29f8d5f

Please sign in to comment.