Skip to content

Commit

Permalink
Version bump 3.3.0 (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
mats-claassen authored Jul 27, 2022
1 parent fb618c7 commit 546b43d
Show file tree
Hide file tree
Showing 10 changed files with 84 additions and 35 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to SuggestionRow will be documented in this file.

## [3.3.0](https://github.com/EurekaCommunity/SuggestionRow/releases/tag/3.3.0)

* Update Eureka version to 5.3.6

## [3.2.0](https://github.com/EurekaCommunity/SuggestionRow/releases/tag/3.2.0)

* Support for Swift Package Manager
Expand Down
1 change: 0 additions & 1 deletion Cartfile

This file was deleted.

1 change: 0 additions & 1 deletion Cartfile.resolved

This file was deleted.

2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let package = Package(
.library(name: "SuggestionRow", targets: ["SuggestionRow"])
],
dependencies: [
.package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.2.0"),
.package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.3.6"),
],
targets: [
.target(
Expand Down
8 changes: 7 additions & 1 deletion Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ platform :ios, '9.3'
target 'SuggestionRow' do
use_frameworks!

pod 'Eureka', '~> 5.3.5'
pod 'Eureka', '~> 5.3.6'

target 'SuggestionRowTests' do
inherit! :search_paths
Expand All @@ -16,3 +16,9 @@ target 'SuggestionRow' do
end

end

target 'Example' do
use_frameworks!

pod 'Eureka', '~> 5.3.6'
end
10 changes: 5 additions & 5 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
PODS:
- Eureka (5.3.5)
- Eureka (5.3.6)

DEPENDENCIES:
- Eureka (~> 5.3.5)
- Eureka (~> 5.3.6)

SPEC REPOS:
trunk:
- Eureka

SPEC CHECKSUMS:
Eureka: 7b39a479d074620d43028a0e2bfc3e0d667724df
Eureka: 28ad9dec6286cd7cd601fdf8e8df39bb7356a8f4

PODFILE CHECKSUM: 331517c4edc5b30477370a9608b305a617f1954c
PODFILE CHECKSUM: 5fb9c77bb8c13376f9efe5ad1f5693043663e05f

COCOAPODS: 1.11.2
COCOAPODS: 1.11.3
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Then run `pod install`.
After you set up your `Package.swift` manifest file, you can add SuggestionRow as a dependency by adding it to the dependencies value of your `Package.swift`.

dependencies: [
.package(url: "https://github.com/EurekaCommunity/SuggestionRow.git", from: "3.2.0")
.package(url: "https://github.com/EurekaCommunity/SuggestionRow.git", from: "3.3.0")
]

## Usage
Expand Down Expand Up @@ -98,7 +98,7 @@ In your form, add a row of type `SuggestionAccessoryRow<Scientist>` or `Suggesti

let users: [Scientist] = [Scientist(id: 1, firstName: "Albert", lastName: "Einstein"),
Scientist(id: 2, firstName: "Isaac", lastName: "Newton")]
...
...
form +++ Section("Table suggestions")
<<< SuggestionTableRow<Scientist>() {
$0.filterFunction = { [unowned self] text in
Expand Down Expand Up @@ -154,7 +154,7 @@ Look at the source code of the default cells for inspiration.

* If you want to change something about the **collectionView** (e.g. its height, backgroundColor) then you can also do that in the `cellSetup` method.

* If you want to **change the collection view cell of the inputAccessoryView** drastically, create your own row (`MySuggestionAccessoryRow`) with your own cell class which conforms to `EurekaSuggestionCollectionViewCell`.
* If you want to **change the collection view cell of the inputAccessoryView** drastically, create your own row (`MySuggestionAccessoryRow`) with your own cell class which conforms to `EurekaSuggestionCollectionViewCell`.
This is very similar to the example mentioned above for `SuggestionTableRow`.

## Dependencies
Expand Down
4 changes: 2 additions & 2 deletions SuggestionRow.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SuggestionRow"
s.version = "3.2.0"
s.version = "3.3.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' }
Expand All @@ -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.3.5'
s.dependency 'Eureka', '~> 5.3.6'
s.swift_version = "5.0"
end
81 changes: 61 additions & 20 deletions SuggestionRow.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion SuggestionRow/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit 546b43d

Please sign in to comment.