Skip to content

Commit

Permalink
chore(release): Prepare version 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dborsatto committed Aug 24, 2018
1 parent df10a2f commit a681394
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,16 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased](https://github.com/contentful/contentful.php/compare/3.3.0...HEAD)
## [3.4.0](https://github.com/contentful/contentful.php/tree/3.4.0) (2018-08-24)

### Added

* The SDK can now use a locally-cached copy of entries and asset. While this _will not_ prevent API calls when using `getEntries` or `getAssets`, it will intercept calls made with `getEntry` and `getAsset`, including those being made when resolving a link from an entry. You can enable this either using the CLI commands with the `--cache-content` flag, or passing `'cacheContent' => true` to the `$options` array in the client constructor (requires `'autoWarmup'` to also be set to true).

### Fixed

* Made sure that cache keys are always PSR-6 compliant. Certain PSR-6 implementations have more lax requirements and the SDK took advantage of that, but now all keys only use the character set defined in the official specification.

## [3.3.0](https://github.com/contentful/contentful.php/tree/3.3.0) (2018-06-18)

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Client extends BaseClient
/**
* @var string
*/
const VERSION = '3.4.0-dev';
const VERSION = '3.4.0';

/**
* @var string
Expand Down

0 comments on commit a681394

Please sign in to comment.