Skip to content

Commit

Permalink
Releasing version 10.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
DenTelezhkin committed Dec 2, 2021
1 parent 9706bfc commit 7f9b5ee
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@ All notable changes to this project will be documented in this file.

# Next

## [10.0.0](https://github.com/DenTelezhkin/DTTableViewManager/releases/tag/10.0.0)

### Added

* Closure wrappers for iOS 15 `tableView:selectionFollowsFocusForRowAt` method.

### Changed

* To align version numbers between `DTModelStorage`, `DTTableViewManager` and `DTCollectionViewManager`, `DTTableViewManager` will not have 9.x release, instead it's being released as 10.x.

### Removed

* Wrappers for `tableView:willCommitMenuWithAnimator` delegate method, that was only briefly available in Xcode 12, and was removed by Apple in one of Xcode 12 releases.
Expand Down
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github "DenTelezhkin/DTModelStorage" >= 10.0.0-beta.1
github "DenTelezhkin/DTModelStorage" >= 10.0.0
6 changes: 3 additions & 3 deletions DTTableViewManager.podspec
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Pod::Spec.new do |s|
s.name = 'DTTableViewManager'
s.version = "9.0.0-beta.1"
s.version = "10.0.0"
s.license = 'MIT'
s.summary = 'Protocol-oriented UITableView management, powered by generics and associated types.'
s.homepage = 'https://github.com/DenTelezhkin/DTTableViewManager'
s.authors = { 'Denys Telezhkin' => '[email protected]' }
s.social_media_url = 'https://twitter.com/DenTelezhkin'
s.source = { :git => 'https://github.com/DenTelezhkin/DTTableViewManager.git', :tag => s.version.to_s }
s.source_files = 'Sources/DTTableViewManager/*.swift'
s.swift_versions = ['5.3']
s.swift_versions = ['5.3', '5.4', '5.5']
s.ios.deployment_target = '11.0'
s.tvos.deployment_target = '11.0'
s.frameworks = 'UIKit', 'Foundation'
s.dependency 'DTModelStorage' , '~> 10.0.0-beta.1'
s.dependency 'DTModelStorage' , '~> 10.0.0'
end
2 changes: 1 addition & 1 deletion DTTableViewManager.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1268,7 +1268,7 @@
repositoryURL = "https://github.com/DenTelezhkin/DTModelStorage";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = "10.0.0-beta.1";
minimumVersion = 10.0.0;
};
};
/* End XCRemoteSwiftPackageReference section */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"repositoryURL": "https://github.com/DenTelezhkin/DTModelStorage",
"state": {
"branch": null,
"revision": "8dfcbd89e37e1b3b9c26ed85bcf78b656b69856f",
"version": "10.0.0-beta.1"
"revision": "d00f7567859a925470720b0b6fd01d791df8b51d",
"version": "10.0.0"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ let package = Package(
.library(name: "DTTableViewManager", targets: ["DTTableViewManager"])
],
dependencies: [
.package(url: "https://github.com/DenTelezhkin/DTModelStorage", Package.Dependency.Requirement.upToNextMajor(from: "10.0.0-beta.1"))
.package(url: "https://github.com/DenTelezhkin/DTModelStorage", Package.Dependency.Requirement.upToNextMajor(from: "10.0.0"))
],
targets: [
.target(name: "DTTableViewManager", dependencies: ["DTModelStorage"])
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Add package into Xcode Project settings -> Swift Packages

### [CocoaPods](http://www.cocoapods.org):

pod 'DTTableViewManager', '~> 8.0.0'
pod 'DTTableViewManager', '~> 10.0.0'

## Quick start

Expand Down
2 changes: 1 addition & 1 deletion Supporting files/Framework.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>9.0.0-beta.1</string>
<string>10.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 7f9b5ee

Please sign in to comment.