Skip to content

Commit

Permalink
Release version 2.0.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
lorentey committed Mar 6, 2016
1 parent b5cf7d1 commit fee6873
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
8 changes: 4 additions & 4 deletions BTree.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
Pod::Spec.new do |spec|
spec.name = 'BTree'
spec.version = '1.2.0-dev'
spec.version = '2.0.0'
spec.osx.deployment_target = "10.9"
spec.ios.deployment_target = "8.0"
spec.tvos.deployment_target = "9.0"
spec.watchos.deployment_target = "2.0"
spec.license = { :type => 'MIT', :file => 'LICENCE.md' }
spec.summary = 'In-memory B-trees and ordered collections in Swift'
spec.homepage = 'https://github.com/lorentey/BTree'
spec.author = 'Károly Lőrentey'
spec.source = { :git => 'https://github.com/lorentey/BTree.git', :branch => 'master' }
spec.homepage = 'https://github.com/lorentey/BTree'
spec.license = { :type => 'MIT', :file => 'LICENCE.md' }
spec.source = { :git => 'https://github.com/lorentey/BTree.git', :tag => 'v2.0.0' }
spec.source_files = 'Sources/*.swift'
spec.social_media_url = 'https://twitter.com/lorentey'
spec.documentation_url = 'http://lorentey.github.io/BTree/api/'
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# Fast Ordered Collections for Swift<br> Using In-Memory B-Trees

[![Swift 2.1](https://img.shields.io/badge/Swift-2.1-blue.svg)](https://developer.apple.com/swift/) [![Documented](https://img.shields.io/badge/docs-98%-brightgreen.svg)](http://lorentey.github.io/BTree/api)
[![Swift 2.1](https://img.shields.io/badge/Swift-2.1-blue.svg)](https://developer.apple.com/swift/)
[![License](https://img.shields.io/badge/licence-MIT-blue.svg)](http://cocoapods.org/pods/BTree)
[![Platform](https://img.shields.io/cocoapods/p/BTree.svg)](http://cocoapods.org/pods/BTree)

[![Build Status](https://travis-ci.org/lorentey/BTree.svg?branch=master)](https://travis-ci.org/lorentey/BTree)
[![Code Coverage](https://codecov.io/github/lorentey/BTree/coverage.svg?branch=master)](https://codecov.io/github/lorentey/BTree?branch=master)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg)](https://github.com/Carthage/Carthage)
[![Version](https://img.shields.io/cocoapods/v/BTree.svg)](http://cocoapods.org/pods/BTree)
[![Documented](https://img.shields.io/cocoapods/metrics/doc-percent/BTree.svg)](http://lorentey.github.io/BTree/api)
<!-- [![Documented](https://img.shields.io/badge/docs-97%-brightgreen.svg)](http://lorentey.github.io/BTree/api) -->

<!-- [![Documented](https://img.shields.io/cocoapods/metrics/doc-percent/BTree.svg)](http://lorentey.github.io/BTree/api) -->
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg)](https://github.com/Carthage/Carthage)
[![CocoaPod Version](https://img.shields.io/cocoapods/v/BTree.svg)](http://cocoapods.org/pods/BTree)

* [Overview](#overview)
* [Reference Documentation](#api)
Expand Down
7 changes: 4 additions & 3 deletions version.xcconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
VERSION_STRING = 1.2.0-dev
BUILD_NUMBER = 2
// OTHER_SWIFT_FLAGS = -DSwift22
// Increment the build number whenever you modify the version string.
VERSION_STRING = 2.0.0
BUILD_NUMBER = 3
//OTHER_SWIFT_FLAGS = -DSwift22

0 comments on commit fee6873

Please sign in to comment.