Skip to content
This repository has been archived by the owner on Jul 3, 2022. It is now read-only.

Commit

Permalink
bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomvis committed May 6, 2015
1 parent b55ba35 commit ab20c2b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BrightFutures.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'BrightFutures'
s.version = '1.0.0'
s.version = '1.0.1'
s.license = 'MIT'
s.summary = 'A simple Futures & Promises library for iOS and OS X written in Swift'
s.homepage = 'https://github.com/Thomvis/BrightFutures'
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 1.0.1
- Updated README to reflect the pre-1.0.0 change from FutureUtils functions to free functions

# 1.0.0
- The FutureUtils class has been removed in favor of a collection of free functions. This allows for a nicer function type signature (e.g. accepting all sequences instead of just arrays)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Our Big Hairy Audacious Goal (BHAG) is to be copy-pasted into the Swift standard
## Latest news
[![Travis build status badge](https://travis-ci.org/Thomvis/BrightFutures.svg?branch=master)](https://travis-ci.org/Thomvis/BrightFutures) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![CocoaPods version](https://img.shields.io/cocoapods/v/BrightFutures.svg)](https://cocoapods.org/pods/BrightFutures) [![MIT License](https://img.shields.io/cocoapods/l/BrightFutures.svg)](LICENSE) ![Platform iOS OS X](https://img.shields.io/cocoapods/p/BrightFutures.svg)

The latest stable BrightFutures release is 1.0.0.
The latest stable BrightFutures release is 1.0.1.

Please don't mind Travis failing until they have Swift 1.2 support.

Expand Down

3 comments on commit ab20c2b

@yonaskolb
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think in the future you don't need to update the version when making readme changes, as the codebase is still functionally exactly the same, especially because the only affect of version changing is for things like cocoapods, which don't even get access to the readme.

@Thomvis
Copy link
Owner Author

@Thomvis Thomvis commented on ab20c2b May 7, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I understand that it might be a bit over the top, but it doesn't hurt either, does it? The advantage of bumping the version is that the README in the checkout by Carthage is up to date and the cocoadocs.org docset is also updated.

@yonaskolb
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah ok, fair enough :)

Please sign in to comment.