Skip to content

Commit

Permalink
Bump version to 0.10.0 and update changelog and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
JP Wright committed Apr 6, 2018
1 parent 2ca4dbd commit 7a8d40f
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CONTENTFUL_PERSISTENCE_VERSION=0.9.1
CONTENTFUL_PERSISTENCE_VERSION=0.10.0
2 changes: 1 addition & 1 deletion .envrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export CONTENTFUL_PERSISTENCE_VERSION=0.9.1
export CONTENTFUL_PERSISTENCE_VERSION=0.10.0
20 changes: 16 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,35 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/) starting from 1.x releases.

### Merged, but not yet released
> ~~All recent changes are published~~
> #### FIXED
> - Assets that contained media files that were not images failed to deserialize the metadata about the file properly, see [contentful.swift #182](https://github.com/contentful/contentful.swift/pull/182)
> All recent changes are published
---

## Table of contents

#### 0.x Releases

- `0.10.x` Releases - [0.10.0](#0100)
- `0.9.x` Releases - [0.9.0](#090) | [0.9.1](#091)
- `0.8.x` Releases - [0.8.0](#080)
- `0.7.x` Releases - [0.7.0](#070)
- `0.6.x` Releases - [0.6.0](#060) | [0.6.1](#061) | [0.6.2](#062)
- `0.5.x` Releases - [0.5.0](#050)
- `0.4.x` Releases - [0.4.0](#040)

---

## [`0.10.0`](https://github.com/contentful/contentful-persistence.swift/releases/tag/0.10.0)
Released on 2018-04-05

#### Added
- **BREAKING:** Ability to store _all_ asset metadata in `AssetPersistable` has been added. Conforming to the new protocol contstraints is a breaking change and you should make sure to resync all data to ensure this metedata is stored properly.
- You can now use the `fetchData(for:with:)` method from contentful.swift on `AssetPersistable` instances

#### Changed
- **BREAKING:** The library is now upgraded to Swift 4.1 and Xcode 9.3

#### FIXED
- Assets that contained media files that were not images failed to deserialize the metadata about the file properly, see [contentful.swift #182](https://github.com/contentful/contentful.swift/pull/182)

---

Expand Down
2 changes: 1 addition & 1 deletion Config.xcconfig
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CONTENTFUL_PERSISTENCE_VERSION=0.9.1
CONTENTFUL_PERSISTENCE_VERSION=0.10.0
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ platform :ios, '8.0'
use_frameworks!

target :MyApp do
pod 'ContentfulPersistenceSwift', '~> 0.9.1'
pod 'ContentfulPersistenceSwift', '~> 0.10.0'
end
```

Expand All @@ -123,7 +123,7 @@ end
You can also use [Carthage][6] for integration by adding the following to your `Cartfile`:

```
github "contentful/contentful.swift" ~> 0.9.1
github "contentful/contentful.swift" ~> 0.10.0
```

## Unit Tests
Expand Down

0 comments on commit 7a8d40f

Please sign in to comment.