From ecd16bf20cb389541400e9255ce55ce183c6f2c4 Mon Sep 17 00:00:00 2001 From: Vincent Garrigues Date: Wed, 1 May 2019 21:12:32 +0200 Subject: [PATCH] Set version to 0.7.0 --- CHANGELOG.md | 6 +++++- README.md | 2 +- SQLiteMigrationManager iOS/Info.plist | 2 +- SQLiteMigrationManager macOS/Info.plist | 2 +- SQLiteMigrationManager.swift.podspec | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9a1538..7dacc84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,12 @@ # Change Log +## [0.7.0](https://github.com/garriguv/SQLiteMigrationManager.swift/releases/tag/0.7.0) + +* Update SQLite.swift to `0.12.0`. (@ypopovych) + ## [0.6.0](https://github.com/garriguv/SQLiteMigrationManager.swift/releases/tag/0.6.0) -* Update SQLite.swift to `0.11.6` +* Update SQLite.swift to `0.11.6`. * Compatible with Xcode `10.2`. ## [0.5.0](https://github.com/garriguv/SQLiteMigrationManager.swift/releases/tag/0.5.0) diff --git a/README.md b/README.md index 190ee89..367c74b 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.6.0") +.package(url: "https://github.com/garriguv/SQLiteMigrationManager.swift.git", from: "0.7.0") ``` ## Contributing diff --git a/SQLiteMigrationManager iOS/Info.plist b/SQLiteMigrationManager iOS/Info.plist index 5b6037d..3157e47 100644 --- a/SQLiteMigrationManager iOS/Info.plist +++ b/SQLiteMigrationManager iOS/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.6.1 + 0.7.0 CFBundleSignature ???? CFBundleVersion diff --git a/SQLiteMigrationManager macOS/Info.plist b/SQLiteMigrationManager macOS/Info.plist index bb69116..b6cc192 100644 --- a/SQLiteMigrationManager macOS/Info.plist +++ b/SQLiteMigrationManager macOS/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.6.1 + 0.7.0 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/SQLiteMigrationManager.swift.podspec b/SQLiteMigrationManager.swift.podspec index c846fd7..0041fc9 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.6.1" + s.version = "0.7.0" s.summary = "Migration manager for SQLite.swift" s.description = <<-DESC Migration manager for SQLite.swift, based on FMDBMigrationManager.