From 77c194f1ffa209663978c0087bc97bafdc8f2a68 Mon Sep 17 00:00:00 2001 From: Ramiz Kichibekov Date: Sun, 17 Mar 2024 09:57:15 +0400 Subject: [PATCH] Update changelog.md --- CHANGELOG.md | 16 ++++++++++++++++ RKSlider.podspec | 2 +- RKSlider/0.1.0/RKSlider.podspec | 26 ++++++++++++++++++++++++++ 3 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 RKSlider/0.1.0/RKSlider.podspec diff --git a/CHANGELOG.md b/CHANGELOG.md index f280ba8..2c616b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # CHANGELOG +## [0.1.1] - 2024-03-17 + +### Changed +- Updated changelog + +## [0.1.0] - 2024-03-17 + +### Added +- Added new configurations for direction-specific animations +- Refined animation transitions when changing directions for a more fluid user experience +- SliderDelegate now supports Swift Concurrency for asynchronous event handling + +### Changed +- Rendering of changes is now synchronized with the GPU using CADisplayLink for smoother visual updates. +- Removed support for Interface Builder to streamline codebase and improve programmability. + ## [0.0.9] - 2024-03-14 ### Fixed diff --git a/RKSlider.podspec b/RKSlider.podspec index 2ec9076..6d854db 100644 --- a/RKSlider.podspec +++ b/RKSlider.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |spec| spec.name = 'RKSlider' - spec.version = '0.0.9' + spec.version = '0.1.1' spec.summary = 'A CocoaPods library written in Swift' spec.description = <<-DESC diff --git a/RKSlider/0.1.0/RKSlider.podspec b/RKSlider/0.1.0/RKSlider.podspec new file mode 100644 index 0000000..4048b4b --- /dev/null +++ b/RKSlider/0.1.0/RKSlider.podspec @@ -0,0 +1,26 @@ +Pod::Spec.new do |spec| + + spec.name = 'RKSlider' + spec.version = '0.1.0' + spec.summary = 'A CocoaPods library written in Swift' + + spec.description = <<-DESC +This CocoaPods library helps you create application with the best slider. + DESC + + spec.homepage = 'https://github.com/Ramiz69/Slider' + + spec.license = 'MIT' + + spec.author = { 'Ramiz Kichibekov' => 'ramiz161@icloud.com' } + spec.social_media_url = 'https://t.me/Ramiz69' + + spec.ios.deployment_target = "14.0" + + spec.source = { :git => 'https://github.com/Ramiz69/Slider.git', :tag => spec.version } + + spec.swift_version = ['5.0', '5.9'] + + spec.source_files = 'Sources/*.swift', 'Sources/**/*.swift' + +end