Skip to content
This repository was archived by the owner on Jan 18, 2025. It is now read-only.

Commit 7b1e47c

Browse files
Bump to version 0.0.5
1 parent cff9612 commit 7b1e47c

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,17 @@
11
# Change Log
22

33
#### 0.x Releases
4-
- `0.0.x` Releases - [0.0.2](#002) | [0.0.3](#003) | [0.0.4](#004)
4+
- `0.0.x` Releases - [0.0.2](#002) | [0.0.3](#003) | [0.0.4](#004) | [0.0.5](#005)
55

66
---
77

8+
## [0.0.5](https://github.com/LeonardoCardoso/SectionedSlider/releases/tag/0.0.5)
9+
Released on 2018-04-27.
10+
11+
#### Fixed
12+
- Unable to select more than 10 sections.
13+
- Added by [Simeon Kostadinov](https://github.com/simonnoff).
14+
815
## [0.0.4](https://github.com/LeonardoCardoso/SectionedSlider/releases/tag/0.0.4)
916
Released on 2017-12-18.
1017

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
| ![iOS](Images/static.gif) | ![watchOS](Images/static2.gif) |
66

77
[![Platform](https://img.shields.io/badge/platform-iOS-orange.svg)](https://github.com/LeonardoCardoso/SectionedSlider#requirements-and-details)
8-
[![CocoaPods](https://img.shields.io/badge/pod-v0.0.4-red.svg)](https://github.com/LeonardoCardoso/SectionedSlider#cocoapods)
8+
[![CocoaPods](https://img.shields.io/badge/pod-v0.0.5-red.svg)](https://github.com/LeonardoCardoso/SectionedSlider#cocoapods)
99
[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg)](https://github.com/LeonardoCardoso/SectionedSlider#carthage)
1010

1111
> Control Center Slider
@@ -31,7 +31,7 @@
3131
$ gem install cocoapods
3232
```
3333

34-
> CocoaPods 1.1.0+ is required to build SectionedSlider 0.0.4+.
34+
> CocoaPods 1.1.0+ is required to build SectionedSlider 0.0.5+.
3535
3636
To integrate SectionedSlider into your Xcode project using CocoaPods, specify it in your `Podfile`:
3737

@@ -40,7 +40,7 @@ source 'https://github.com/CocoaPods/Specs.git'
4040
platform :ios, '8.0'
4141
use_frameworks!
4242

43-
pod 'SectionedSlider', '~> 0.0.4'
43+
pod 'SectionedSlider', '~> 0.0.5'
4444
```
4545

4646
Then, run the following command:
@@ -63,7 +63,7 @@ $ brew install carthage
6363
To integrate SectionedSlider into your Xcode project using Carthage, specify it in your `Cartfile`:
6464

6565
```ogdl
66-
github "LeonardoCardoso/SectionedSlider" ~> 0.0.4
66+
github "LeonardoCardoso/SectionedSlider" ~> 0.0.5
6767
```
6868

6969
### Manually

SectionedSlider.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = 'SectionedSlider'
4-
s.version = '0.0.4'
4+
s.version = '0.0.5'
55
s.license = { :type => "MIT", :file => "LICENSE" }
66
s.summary = 'Control Center Slider'
77
s.homepage = 'https://github.com/LeonardoCardoso/SectionedSlider'

update-version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
grep -rl '0\.0\.3' . --exclude-dir={"Build","libs","Pods",".git"} --exclude={"Podfile.lock","CHANGELOG.md","update-version.sh"} | xargs sed -i.bak 's/0\.0\.3/0\.0\.4/g';
1+
grep -rl '0\.0\.4' . --exclude-dir={"Build","libs","Pods",".git"} --exclude={"Podfile.lock","CHANGELOG.md","update-version.sh"} | xargs sed -i.bak 's/0\.0\.4/0\.0\.5/g';
22

33
find . -type f -name '*.bak' -delete

0 commit comments

Comments
 (0)