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

Commit b86a1d2

Browse files
committed
Update versions & add changelog entry
1 parent 6268928 commit b86a1d2

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

BrightFutures.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'BrightFutures'
3-
s.version = '6.1.0'
3+
s.version = '7.0.0'
44
s.license = 'MIT'
55
s.summary = 'Write great asynchronous code in Swift using futures and promises'
66
s.homepage = 'https://github.com/Thomvis/BrightFutures'

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 7.0.0
2+
Adds support for Swift 4.2 and Xcode 10.
3+
4+
- Upgrade Result dependency to 4.0.
5+
- [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+
17
# 6.0.1
28
Adds support for Swift 4.1 and Xcode 9.3 (tested with beta 4).
39

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import PackageDescription
33
let package = Package(
44
name: "BrightFutures",
55
dependencies: [
6-
.Package(url: "https://github.com/antitypical/Result.git", majorVersion: 3),
6+
.Package(url: "https://github.com/antitypical/Result.git", majorVersion: 4),
77
]
88
)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The stability of BrightFutures has been proven through extensive use in producti
1313
## Latest news
1414
[![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)
1515

16-
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.
16+
BrightFutures 7.0 is now available! This update adds Swift 4.2 compatibility.
1717

1818
## Installation
1919
### [CocoaPods](http://cocoapods.org/)

0 commit comments

Comments
 (0)