From be91ef1065f4e49a994741f3e65d65967e6eaacb Mon Sep 17 00:00:00 2001 From: Mathias Claassen Date: Tue, 12 Nov 2019 12:27:13 -0300 Subject: [PATCH] release version 3.1.0 --- CHANGELOG.md | 4 ++++ Cartfile.resolved | 2 +- Podfile.lock | 2 +- README.md | 2 +- SuggestionRow.podspec | 4 ++-- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76ad29a..7fa3e0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log All notable changes to SuggestionRow will be documented in this file. +## [3.1.0](https://github.com/EurekaCommunity/SuggestionRow/releases/tag/3.1.0) + +* Support for Eureka 5.1, iOS 13 and Dark mode + ## [3.0.0](https://github.com/EurekaCommunity/SuggestionRow/releases/tag/3.0.0) * Support for Eureka 5.0 and Swift 5.0 diff --git a/Cartfile.resolved b/Cartfile.resolved index cc733b0..5947ac3 100644 --- a/Cartfile.resolved +++ b/Cartfile.resolved @@ -1 +1 @@ -github "xmartlabs/Eureka" "5.0.0" +github "xmartlabs/Eureka" "5.1.0" diff --git a/Podfile.lock b/Podfile.lock index ffdc6d0..e54df44 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -13,4 +13,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: 02d4251c7f7710ee2ed6c4b8f8d6deda414d8080 -COCOAPODS: 1.8.1 +COCOAPODS: 1.8.4 diff --git a/README.md b/README.md index 85bf589..d877b7c 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,7 @@ This is very similar to the example mentioned above for `SuggestionTableRow`. ## Requirements * iOS 9.3+ * Xcode 10.2+ -* Swift 4.2 +* Swift 5.0 ## Getting involved * If you **want to contribute** please feel free to **submit pull requests**. diff --git a/SuggestionRow.podspec b/SuggestionRow.podspec index ed3d872..38e6c90 100644 --- a/SuggestionRow.podspec +++ b/SuggestionRow.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SuggestionRow" - s.version = "3.0.0" + s.version = "3.1.0" s.summary = "Eureka row that displays completion suggestions either below the row in a table view or in the input accessory view above the keyboard." s.homepage = "https://github.com/EurekaCommunity/SuggestionRow" s.license = { type: 'MIT', file: 'LICENSE' } @@ -10,6 +10,6 @@ Pod::Spec.new do |s| s.ios.deployment_target = '9.3' s.requires_arc = true s.ios.source_files = 'Sources/**/*.{swift}' - s.dependency 'Eureka', '~> 5.0' + s.dependency 'Eureka', '~> 5.1' s.swift_version = "5.0" end