From 441756b707f319836d3fc6b79b4be7d3ff0493f4 Mon Sep 17 00:00:00 2001 From: Kishikawa Katsumi Date: Tue, 6 Feb 2018 22:30:48 +0900 Subject: [PATCH] Bump version to 0.1.1 --- BitcoinKit.podspec | 2 +- BitcoinKit/Info.plist | 2 +- CHANGELOG.md | 15 +++++++++++++++ README.md | 15 +++++++++++++++ 4 files changed, 32 insertions(+), 2 deletions(-) diff --git a/BitcoinKit.podspec b/BitcoinKit.podspec index 5987ce38..b02050d8 100644 --- a/BitcoinKit.podspec +++ b/BitcoinKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = 'BitcoinKit' - spec.version = '0.1.0' + spec.version = '0.1.1' spec.summary = 'Bitcoin protocol toolkit for Swift' spec.description = <<-DESC BitcoinKit implements Bitcoin protocol in Swift. It is an implementation of the Bitcoin SPV protocol written (almost) entirely in swift. diff --git a/BitcoinKit/Info.plist b/BitcoinKit/Info.plist index d725449f..84545a2b 100644 --- a/BitcoinKit/Info.plist +++ b/BitcoinKit/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 0.1.0 + 0.1.1 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/CHANGELOG.md b/CHANGELOG.md index 432e4b9f..5dd62871 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,21 @@ * None. +## 0.1.1 Release notes (2018-02-06) + +##### Breaking + +* None. + +##### Enhancements + +* Extend supported lower iOS version to 8.0 +* Support CocoaPods + +##### Bug Fixes + +* Fix carthage installation failure + ## 0.1.0 Release notes (2018-02-05) First Version! diff --git a/README.md b/README.md index a3885414..92cde2cf 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ BitcoinKit =========== +[![CI Status](http://img.shields.io/travis/kishikawakatsumi/BitcoinKit.svg)](https://travis-ci.org/kishikawakatsumi/BitcoinKit) +[![codecov](https://codecov.io/gh/kishikawakatsumi/BitcoinKit/branch/master/graph/badge.svg)](https://codecov.io/gh/kishikawakatsumi/BitcoinKit) +[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) +[![Version](https://img.shields.io/cocoapods/v/BitcoinKit.svg)](http://cocoadocs.org/docsets/BitcoinKit) +[![Platform](https://img.shields.io/cocoapods/p/BitcoinKit.svg)](http://cocoadocs.org/docsets/BitcoinKit) BitcoinKit implements Bitcoin protocol in Swift. It is an implementation of the Bitcoin SPV protocol written (almost) entirely in swift. @@ -99,6 +104,16 @@ it, simply add the following line to your Cartfile: `github "kishikawakatsumi/BitcoinKit"` +### CocoaPods + +BitcoinKit is available through [CocoaPods](http://cocoapods.org). To install +it, simply add the following lines to your Podfile: + +```ruby +use_frameworks! +pod 'BitcoinKit' +``` + Contribute ----------