Skip to content

Commit 546b43d

Browse files
authoredJul 27, 2022
Version bump 3.3.0 (#54)
1 parent fb618c7 commit 546b43d

File tree

10 files changed

+84
-35
lines changed

10 files changed

+84
-35
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Change Log
22
All notable changes to SuggestionRow will be documented in this file.
33

4+
## [3.3.0](https://github.com/EurekaCommunity/SuggestionRow/releases/tag/3.3.0)
5+
6+
* Update Eureka version to 5.3.6
7+
48
## [3.2.0](https://github.com/EurekaCommunity/SuggestionRow/releases/tag/3.2.0)
59

610
* Support for Swift Package Manager

‎Cartfile

-1
This file was deleted.

‎Cartfile.resolved

-1
This file was deleted.

‎Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let package = Package(
88
.library(name: "SuggestionRow", targets: ["SuggestionRow"])
99
],
1010
dependencies: [
11-
.package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.2.0"),
11+
.package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.3.6"),
1212
],
1313
targets: [
1414
.target(

‎Podfile

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ platform :ios, '9.3'
33
target 'SuggestionRow' do
44
use_frameworks!
55

6-
pod 'Eureka', '~> 5.3.5'
6+
pod 'Eureka', '~> 5.3.6'
77

88
target 'SuggestionRowTests' do
99
inherit! :search_paths
@@ -16,3 +16,9 @@ target 'SuggestionRow' do
1616
end
1717

1818
end
19+
20+
target 'Example' do
21+
use_frameworks!
22+
23+
pod 'Eureka', '~> 5.3.6'
24+
end

‎Podfile.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
PODS:
2-
- Eureka (5.3.5)
2+
- Eureka (5.3.6)
33

44
DEPENDENCIES:
5-
- Eureka (~> 5.3.5)
5+
- Eureka (~> 5.3.6)
66

77
SPEC REPOS:
88
trunk:
99
- Eureka
1010

1111
SPEC CHECKSUMS:
12-
Eureka: 7b39a479d074620d43028a0e2bfc3e0d667724df
12+
Eureka: 28ad9dec6286cd7cd601fdf8e8df39bb7356a8f4
1313

14-
PODFILE CHECKSUM: 331517c4edc5b30477370a9608b305a617f1954c
14+
PODFILE CHECKSUM: 5fb9c77bb8c13376f9efe5ad1f5693043663e05f
1515

16-
COCOAPODS: 1.11.2
16+
COCOAPODS: 1.11.3

‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Then run `pod install`.
5454
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`.
5555

5656
dependencies: [
57-
.package(url: "https://github.com/EurekaCommunity/SuggestionRow.git", from: "3.2.0")
57+
.package(url: "https://github.com/EurekaCommunity/SuggestionRow.git", from: "3.3.0")
5858
]
5959

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

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

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

157-
* 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`.
157+
* 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`.
158158
This is very similar to the example mentioned above for `SuggestionTableRow`.
159159

160160
## Dependencies

‎SuggestionRow.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "SuggestionRow"
3-
s.version = "3.2.0"
3+
s.version = "3.3.0"
44
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."
55
s.homepage = "https://github.com/EurekaCommunity/SuggestionRow"
66
s.license = { type: 'MIT', file: 'LICENSE' }
@@ -10,6 +10,6 @@ Pod::Spec.new do |s|
1010
s.ios.deployment_target = '9.3'
1111
s.requires_arc = true
1212
s.ios.source_files = 'Sources/**/*.{swift}'
13-
s.dependency 'Eureka', '~> 5.3.5'
13+
s.dependency 'Eureka', '~> 5.3.6'
1414
s.swift_version = "5.0"
1515
end

‎SuggestionRow.xcodeproj/project.pbxproj

+61-20
Large diffs are not rendered by default.

‎SuggestionRow/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

0 commit comments

Comments
 (0)