Skip to content

Commit 41d7580

Browse files
committed
Version 3.1.0
1 parent e7459f9 commit 41d7580

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# ChangeLog
22

3+
## [3.1.0](https://github.com/scenee/FloatingPanel/releases/tag/3.1.0)
4+
5+
### Added
6+
7+
- Added support for configuring `UICornerConfiguration` when running on iOS 26 so surfaces can adopt the latest corner styles (#664).
8+
- Expanded Core test coverage with new cases for scroll offset resets and `statePublisher` delivery to guard against regressions.
9+
10+
### Changed
11+
12+
- **Restored compatibility with iOS 12** by lowering the deployment target across the project, Swift Package manifest, and CocoaPods spec, and by making Combine usage conditional (#674).
13+
14+
## [3.0.1](https://github.com/scenee/FloatingPanel/releases/tag/3.0.1)
15+
16+
### Changed
17+
18+
- Refined the DocC documentation landing page for the new SwiftUI APIs.
19+
20+
### Fixed
21+
22+
- Corrected the CocoaPods spec so the SwiftUI sources are packaged properly.
23+
324
## [3.0.0](https://github.com/scenee/FloatingPanel/releases/tag/3.0.0)
425

526
### Breaking Changes
@@ -135,3 +156,4 @@
135156
- Fixed invalid scroll offsets after moving between states
136157
- Calls `floatingPanelWillRemove` delegate method when a panel is removed from a
137158
window
159+

FloatingPanel.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "FloatingPanel"
4-
s.version = "3.0.1"
4+
s.version = "3.1.0"
55
s.summary = "FloatingPanel is a clean and easy-to-use UI component of a floating panel interface."
66
s.description = <<-DESC
77
FloatingPanel is a clean and easy-to-use UI component for a new interface introduced in Apple Maps, Shortcuts and Stocks app.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ FloatingPanel is written in Swift 5.0+ and compatible with iOS 12.0+.
7474

7575
## Documentation
7676

77-
- [API reference on Swift Package Index](https://swiftpackageindex.com/scenee/FloatingPanel/3.0.1/documentation/floatingpanel)
77+
- [API reference on Swift Package Index](https://swiftpackageindex.com/scenee/FloatingPanel/3.1.0/documentation/floatingpanel)
7878
- [FloatingPanel SwiftUI API Guide](/Documentation/FloatingPanel%20SwiftUI%20API%20Guide.md)
7979
- [FloatingPanel API Guide](/Documentation/FloatingPanel%20API%20Guide.md)
8080
- [FloatingPanel 2.0 Migration Guide](/Documentation/FloatingPanel%202.0%20Migration%20Guide.md)
@@ -92,7 +92,7 @@ Just follow [this documentation](https://developer.apple.com/documentation/swift
9292
In your Package.swift Swift Package Manager manifest, add the following dependency to your dependencies argument:
9393

9494
```swift
95-
.package(url: "https://github.com/scenee/FloatingPanel", from: "3.0.1"),
95+
.package(url: "https://github.com/scenee/FloatingPanel", from: "3.1.0"),
9696
```
9797

9898
Add Numerics as a dependency for your target:

Sources/Info.plist

Lines changed: 1 addition & 1 deletion
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>3.0.1</string>
18+
<string>3.1.0</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
</dict>

0 commit comments

Comments
 (0)