Skip to content

Commit

Permalink
Update changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramiz69 committed Mar 17, 2024
1 parent 68a9e1d commit 77c194f
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion RKSlider.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
26 changes: 26 additions & 0 deletions RKSlider/0.1.0/RKSlider.podspec
Original file line number Diff line number Diff line change
@@ -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' => '[email protected]' }
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

0 comments on commit 77c194f

Please sign in to comment.