From b86a1d202afff7bfca7adf2423ad1962172ee10a Mon Sep 17 00:00:00 2001 From: Thomas Visser Date: Tue, 18 Sep 2018 22:40:09 +0200 Subject: [PATCH] Update versions & add changelog entry --- BrightFutures.podspec | 2 +- CHANGELOG.md | 6 ++++++ Package.swift | 2 +- README.md | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/BrightFutures.podspec b/BrightFutures.podspec index 1e7a14e..4f5b2b3 100644 --- a/BrightFutures.podspec +++ b/BrightFutures.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'BrightFutures' - s.version = '6.1.0' + s.version = '7.0.0' s.license = 'MIT' s.summary = 'Write great asynchronous code in Swift using futures and promises' s.homepage = 'https://github.com/Thomvis/BrightFutures' diff --git a/CHANGELOG.md b/CHANGELOG.md index 214bc0d..2799d16 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 7.0.0 +Adds support for Swift 4.2 and Xcode 10. + +- Upgrade Result dependency to 4.0. +- [FIX] Fixed a typo and incorrect reference in the `andThen` test ([https://github.com/Thomvis/BrightFutures/pull/197](#197), thanks [https://github.com/robertoaceves](robertoaceves)!) + # 6.0.1 Adds support for Swift 4.1 and Xcode 9.3 (tested with beta 4). diff --git a/Package.swift b/Package.swift index 88fc138..b0ea640 100644 --- a/Package.swift +++ b/Package.swift @@ -3,6 +3,6 @@ import PackageDescription let package = Package( name: "BrightFutures", dependencies: [ - .Package(url: "https://github.com/antitypical/Result.git", majorVersion: 3), + .Package(url: "https://github.com/antitypical/Result.git", majorVersion: 4), ] ) diff --git a/README.md b/README.md index ca82764..d88a641 100755 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ The stability of BrightFutures has been proven through extensive use in producti ## Latest news [![Join the chat at https://gitter.im/Thomvis/BrightFutures](https://badges.gitter.im/Thomvis/BrightFutures.svg)](https://gitter.im/Thomvis/BrightFutures?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Travis CI 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) [![CocoaPods](https://img.shields.io/cocoapods/metrics/doc-percent/BrightFutures.svg?maxAge=2592000)](http://cocoadocs.org/docsets/BrightFutures) -BrightFutures 6.0 is now available! This update adds Swift 4 compatibility and contains breaking changes that are in line with the syntax changes between Swift 3 and 4. +BrightFutures 7.0 is now available! This update adds Swift 4.2 compatibility. ## Installation ### [CocoaPods](http://cocoapods.org/)