From 9361a3e39bd1d62c03d7d50572eeba840f81a9f0 Mon Sep 17 00:00:00 2001 From: hugehoge Date: Wed, 12 Jan 2022 07:52:14 +0900 Subject: [PATCH 1/2] Update changelog for 0.2.0 Move main section items to 0.2.0. --- CHANGELOG.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 923cc46..6d08651 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,19 +5,25 @@ Changelog ### Feature -- CocoaPods support [#11](https://github.com/hugehoge/Snappable/pull/11) - ### Changed -- Swift 5.3 support [#8](https://github.com/hugehoge/Snappable/pull/8), [#9](https://github.com/hugehoge/Snappable/pull/9) -- Changed the interface of snappable modifier [#10](https://github.com/hugehoge/Snappable/pull/10), [#12](https://github.com/hugehoge/Snappable/pull/12) - ### Fixed ### Document ### Misc +## [0.2.0] + +### Feature + +- CocoaPods support [#11](https://github.com/hugehoge/Snappable/pull/11) + +### Changed + +- Swift 5.3 support [#8](https://github.com/hugehoge/Snappable/pull/8), [#9](https://github.com/hugehoge/Snappable/pull/9) +- Changed the interface of snappable modifier [#10](https://github.com/hugehoge/Snappable/pull/10), [#12](https://github.com/hugehoge/Snappable/pull/12) + ## [0.1.1] ### Fixed @@ -37,3 +43,4 @@ Changelog [0.1.0]: https://github.com/hugehoge/Snappable/releases/tag/0.1.0 [0.1.1]: https://github.com/hugehoge/Snappable/releases/tag/0.1.1 +[0.2.0]: https://github.com/hugehoge/Snappable/releases/tag/0.2.0 From 9c27c34ac34cafb6ee1eb386dfda34b402f796a4 Mon Sep 17 00:00:00 2001 From: hugehoge Date: Wed, 12 Jan 2022 07:54:19 +0900 Subject: [PATCH 2/2] Bump up version to 0.2.0 --- README.md | 2 +- Snappable.podspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 938b819..dc5186b 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ The goal of this library is to provide an easy way to implement Views such as ca ```swift .package( url: "https://github.com/hugehoge/Snappable.git", - .upToNextMinor(from: "0.1.0") + .upToNextMinor(from: "0.2.0") ) ``` diff --git a/Snappable.podspec b/Snappable.podspec index fe61881..7f995f8 100644 --- a/Snappable.podspec +++ b/Snappable.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Snappable' - s.version = '0.1.1' + s.version = '0.2.0' s.summary = 'A set of SwiftUI custom modifiers to make the ScrollView snappable.' s.description = 'A set of SwiftUI custom modifiers to make the ScrollView snappable. The goal of this library is to provide an easy way to implement Views such as carousels and slideshows.' s.homepage = 'https://github.com/hugehoge/Snappable'