Skip to content

Commit

Permalink
Bump to version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andreamazz committed Jun 17, 2019
1 parent 5bb8e62 commit b2aadb5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
19 changes: 16 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,25 @@
All notable changes to this project will be documented in this file.
`SwiftSpinner` adheres to [Semantic Versioning](http://semver.org/).

- `1.6.x` Releases - [1.6.0](#160)
- `1.5.x` Releases - [1.5.0](#150)
- `1.4.x` Releases - [1.4.0](#140)
- `2.0.x` Releases - [2.0.0](#200)
- `1.6.x` Releases - [1.6.0](#160)
- `1.5.x` Releases - [1.5.0](#150)
- `1.4.x` Releases - [1.4.0](#140)

---

## [2.0.0](https://github.com/icanzilb/SwiftSpinner/releases/tag/2.0.0)

### Breaking change

The singleton property has been renamed to `shared` in accordance with other platform conventions.

### Other changes

- Added a completion handler to the `hdie` method, see #135
- Merged #136
- Merged #134

## [1.6.0](https://github.com/icanzilb/SwiftSpinner/releases/tag/1.6.0)

- Support Swift 4.2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ SwiftSpinner.setTitleFont(nil)
In case you want to change an arbitrary aspect of the text on screen access directly:

```swift
SwiftSpinner.sharedInstance.titleLabel
SwiftSpinner.sharedInstance.subtitleLabel
SwiftSpinner.shared.titleLabel
SwiftSpinner.shared.subtitleLabel
```

You can show a spinner only if certain amount of time has passed (e.g. if you are downloading a file - show a message only if the operation takes longer than certain amount of time):
Expand Down
2 changes: 1 addition & 1 deletion SwiftSpinner.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "SwiftSpinner"
s.version = "1.7.0"
s.version = "2.0.0"
s.summary = "A beautiful activity indicator written in Swift"
s.description = <<-DESC
SwiftSpinner is an extra beautiful activity indicator with plain and bold style fitting iOS 8 design very well. It uses dynamic blur and translucency to overlay the current screen contents and display an activity indicator with text (or the so called “spinner”).
Expand Down

0 comments on commit b2aadb5

Please sign in to comment.