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 11c56e4 commit fb6f810
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.

# Next

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

### Added

* Wrappers for `collectionView:selectionFollowsFocusForItemAtIndexPath:` delegate method.
Expand All @@ -12,6 +14,10 @@ All notable changes to this project will be documented in this file.

* Wrappers for `collectionView:willCommitMenuWithAnimator` delegate method, that was only briefly available in Xcode 12, and was removed by Apple in one of Xcode 12 releases.

### Changed

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

### Deprecated

* `targetIndexPathForMovingItem` deprecated on iOS / tvOS 15 and higher, because delegate method `collectionView:targetIndexPathForMoveFromItemAt:toProposedIndexPath:` was deprecated in favor of newer method.
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
4 changes: 2 additions & 2 deletions DTCollectionViewManager.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DTCollectionViewManager'
s.version = "9.0.0-beta.1"
s.version = "10.0.0"
s.license = 'MIT'
s.summary = 'Protocol-oriented UICollectionView management, powered by generics and associated types.'
s.homepage = 'https://github.com/DenTelezhkin/DTCollectionViewManager'
Expand All @@ -13,5 +13,5 @@ Pod::Spec.new do |s|
s.tvos.deployment_target = '11.0'
s.frameworks = 'UIKit', 'Foundation'
s.tvos.framework = 'TVUIKit'
s.dependency 'DTModelStorage' , '~> 10.0.0-beta.1'
s.dependency 'DTModelStorage' , '~> 10.0.0'
end
4 changes: 2 additions & 2 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,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: "DTCollectionViewManager", targets: ["DTCollectionViewManager"])
],
dependencies: [
.package(url: "https://github.com/DenTelezhkin/DTModelStorage", .upToNextMajor(from: "10.0.0-beta.1"))
.package(url: "https://github.com/DenTelezhkin/DTModelStorage", .upToNextMajor(from: "10.0.0"))
],
targets: [
.target(name: "DTCollectionViewManager", dependencies: ["DTModelStorage"]),
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Add package into Xcode Project settings -> Swift Packages

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

pod 'DTCollectionViewManager', '~> 8.0.0'
pod 'DTCollectionViewManager', '~> 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 fb6f810

Please sign in to comment.