Skip to content

Commit

Permalink
Bump to version 0.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardoCardoso committed Apr 27, 2018
1 parent cff9612 commit 7b1e47c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Change Log

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

---

## [0.0.5](https://github.com/LeonardoCardoso/SectionedSlider/releases/tag/0.0.5)
Released on 2018-04-27.

#### Fixed
- Unable to select more than 10 sections.
- Added by [Simeon Kostadinov](https://github.com/simonnoff).

## [0.0.4](https://github.com/LeonardoCardoso/SectionedSlider/releases/tag/0.0.4)
Released on 2017-12-18.

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
| ![iOS](Images/static.gif) | ![watchOS](Images/static2.gif) |

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

> Control Center Slider
Expand All @@ -31,7 +31,7 @@
$ gem install cocoapods
```

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

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

pod 'SectionedSlider', '~> 0.0.4'
pod 'SectionedSlider', '~> 0.0.5'
```

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

```ogdl
github "LeonardoCardoso/SectionedSlider" ~> 0.0.4
github "LeonardoCardoso/SectionedSlider" ~> 0.0.5
```

### Manually
Expand Down
2 changes: 1 addition & 1 deletion SectionedSlider.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'SectionedSlider'
s.version = '0.0.4'
s.version = '0.0.5'
s.license = { :type => "MIT", :file => "LICENSE" }
s.summary = 'Control Center Slider'
s.homepage = 'https://github.com/LeonardoCardoso/SectionedSlider'
Expand Down
2 changes: 1 addition & 1 deletion update-version.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
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';
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';

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

0 comments on commit 7b1e47c

Please sign in to comment.