Skip to content

Commit

Permalink
Prepare v2.3.0-rc.3 release (#312)
Browse files Browse the repository at this point in the history
### Description
- Prepare v2.3.0-rc.3 release
  • Loading branch information
aokj4ck authored Aug 30, 2024
1 parent 7e461ce commit 6c8b8bb
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 13 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,19 @@ Guide: https://keepachangelog.com/en/1.0.0/

<!-- Add changes for active work here -->

- [SearchEngine] Add baseURL parameter for custom Mapbox API endpoint development.
- [SearchResultMetadata] Add `rating` field to replace deprecated `averageRating` field.
## 2.3.0-rc.3

- [SearchEngine] Add SearchEngine.init(baseURL:) parameter for custom Mapbox API endpoint development.
- [SearchResultMetadata] Add `rating` field to replace deprecated `averageRating` field.
- [SearchResultMetadata] Add fields for search response.
- [Project] Downgrade Package from Swift 5.10 to 5.9 for compatibility with Xcode 15.0 to 15.2.
- [Project] Remove SPM strict concurrency flag from MapboxSearch, MapboxSearchUI targets.

- [Project] Update Fastlane to 2.222.0.
- [Project] Fix license with Cocoapods.
- [Project] Update README and add GitHub Issue templates.

**MapboxCommon**: v24.6.0
**MapboxCoreSearch**: v2.3.0

## 2.3.0-rc.2

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## License

Mapbox Search for iOS version 2.3.0-rc.2
Mapbox Search for iOS version 2.3.0-rc.3
Mapbox Search iOS SDK

Copyright © 2021 - 2024 Mapbox, Inc. All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion MapboxSearch.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'MapboxSearch'
s.version = '2.3.0-rc.2'
s.version = '2.3.0-rc.3'
s.summary = 'Search SDK for Mapbox Search API'

# This description is used to generate tags and improve search results.
Expand Down
4 changes: 2 additions & 2 deletions MapboxSearchUI.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'MapboxSearchUI'
s.version = '2.3.0-rc.2'
s.version = '2.3.0-rc.3'
s.summary = 'Search UI for Mapbox Search API'

# This description is used to generate tags and improve search results.
Expand All @@ -23,5 +23,5 @@ Card style custom UI with full search functionality powered by Mapbox Search API

s.vendored_frameworks = "**/#{s.name}.xcframework"

s.dependency 'MapboxSearch', "2.3.0-rc.2"
s.dependency 'MapboxSearch', "2.3.0-rc.3"
end
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ dependencies: [
##### MapboxSearch
To integrate latest pre-release version of `MapboxSearch` into your Xcode project using CocoaPods, specify it in your `Podfile`:
```
pod 'MapboxSearch', ">= 2.3.0-rc.2", "< 3.0"
pod 'MapboxSearch', ">= 2.3.0-rc.3", "< 3.0"
```
##### MapboxSearchUI
To integrate latest pre-release version of `MapboxSearchUI` into your Xcode project using CocoaPods, specify it in your `Podfile`:
```
pod 'MapboxSearchUI', ">= 2.3.0-rc.2", "< 3.0"
pod 'MapboxSearchUI', ">= 2.3.0-rc.3", "< 3.0"
```
### Carthage
Expand All @@ -109,7 +109,7 @@ pod 'MapboxSearchUI', ">= 2.3.0-rc.2", "< 3.0"
2. Follow the [Carthage Quick Start](https://github.com/Carthage/Carthage?tab=readme-ov-file#quick-start) and specificy the MapboxSearch dependency in your `Cartfile`:
```
github "Mapbox/mapbox-search-ios" ~> 2.3.0-rc.2
github "Mapbox/mapbox-search-ios" ~> 2.3.0-rc.3
```
## Contributing
Expand Down
4 changes: 2 additions & 2 deletions Search Documentation.docc/Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ To add the Mapbox Search SDK dependency with CocoaPods, you will need to configu
```ruby
use_frameworks!
target "TargetNameForYourApp" do
pod 'MapboxSearchUI', ">= 2.3.0-rc.2", "< 3.0"
pod 'MapboxSearchUI', ">= 2.3.0-rc.3", "< 3.0"
end
```

Expand All @@ -68,7 +68,7 @@ To add the Mapbox Search SDK dependency with CocoaPods, you will need to configu
```ruby
use_frameworks!
target "TargetNameForYourApp" do
pod 'MapboxSearch', ">= 2.3.0-rc.2", "< 3.0"
pod 'MapboxSearch', ">= 2.3.0-rc.3", "< 3.0"
end
```

Expand Down
2 changes: 1 addition & 1 deletion Sources/MapboxSearch/PublicAPI/MapboxSearchVersion.swift
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// Mapbox Search SDK version variable
public let mapboxSearchSDKVersion = "2.3.0-rc.2"
public let mapboxSearchSDKVersion = "2.3.0-rc.3"

0 comments on commit 6c8b8bb

Please sign in to comment.