From a716a877eca2e25fd8f0201605feaebfc0db27fc Mon Sep 17 00:00:00 2001 From: Vincent Garrigues Date: Sat, 2 Feb 2019 18:51:57 +0100 Subject: [PATCH] Set version to 0.5.0 --- CHANGELOG.md | 5 +++++ README.md | 2 +- SQLiteMigrationManager iOS/Info.plist | 2 +- SQLiteMigrationManager.swift.podspec | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6cffd4c..5ab3b9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## [0.5.0](https://github.com/garriguv/SQLiteMigrationManager.swift/releases/tag/0.5.0) + +* Add macOS support (@nickgzzjr & @misteral). +* Reorganize project to support additional platforms in the future. + ## [0.4.0](https://github.com/garriguv/SQLiteMigrationManager.swift/releases/tag/0.4.0) * Swift 4.2 support. diff --git a/README.md b/README.md index 4eb9e1b..bb86c1c 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ SQLiteMigrationManager.swift is availabel through [Swift Package Manager](https: To install it, add the following dependency to your `Package.swift` file: ```swift -.package(url: "https://github.com/garriguv/SQLiteMigrationManager.swift.git", from: "0.4.0") +.package(url: "https://github.com/garriguv/SQLiteMigrationManager.swift.git", from: "0.5.0") ``` ## Contributing diff --git a/SQLiteMigrationManager iOS/Info.plist b/SQLiteMigrationManager iOS/Info.plist index c941094..288c341 100644 --- a/SQLiteMigrationManager iOS/Info.plist +++ b/SQLiteMigrationManager iOS/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.4.0 + 0.5.0 CFBundleSignature ???? CFBundleVersion diff --git a/SQLiteMigrationManager.swift.podspec b/SQLiteMigrationManager.swift.podspec index 3b7e77a..ccde755 100644 --- a/SQLiteMigrationManager.swift.podspec +++ b/SQLiteMigrationManager.swift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SQLiteMigrationManager.swift" - s.version = "0.4.0" + s.version = "0.5.0" s.summary = "Migration manager for SQLite.swift" s.description = <<-DESC Migration manager for SQLite.swift, based on FMDBMigrationManager.