Skip to content

Commit

Permalink
Merge pull request #39 from kstich/release_2.0.0
Browse files Browse the repository at this point in the history
Release 2.0.0 Updates
  • Loading branch information
kstich authored Jan 18, 2018
2 parents 1b5753f + 80fadc0 commit 2ffb768
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# CHANGELOG

## 2.0.0 - 2018-01-18

* Added support for Symfony ~4.0
* Updated package type for Symfony Flex support.

## 1.3.0 - 2017-07-12

* Added support for Symfony ~3.0.
* Fixed deprecation warnings being thrown on Symfony >= 2.6.

## 1.0.2 - 2015-09-05

* Removed usage of `setFactory` method to ensure compatiable with
* Removed usage of `setFactory` method to ensure compatibility with
`symfony/dependency-injection` ~2.3

## 1.0.1 - 2015-08-11
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[![@awsforphp on Twitter](http://img.shields.io/badge/twitter-%40awsforphp-blue.svg?style=flat)](https://twitter.com/awsforphp)
[![Build Status](https://travis-ci.org/aws/aws-sdk-php-symfony.svg)](https://travis-ci.org/aws/aws-sdk-php-symfony)
[![Latest Stable Version](https://poser.pugx.org/aws/aws-sdk-php-symfony/v/stable.png)](https://packagist.org/packages/aws/aws-sdk-php-symfony)
[![Total Downloads](https://poser.pugx.org/aws/aws-sdk-php-symfony/downloads.png)](https://packagist.org/packages/aws/aws-sdk-php-symfony)
[![Latest Stable Version](https://img.shields.io/packagist/v/aws/aws-sdk-php-symfony.svg)](https://packagist.org/packages/aws/aws-sdk-php-symfony)
[![Total Downloads](https://img.shields.io/packagist/dt/aws/aws-sdk-php-symfony.svg)](https://packagist.org/packages/aws/aws-sdk-php-symfony)

A Symfony bundle for including the [AWS SDK for PHP](https://github.com/aws/aws-sdk-php).

Expand All @@ -15,7 +15,7 @@ requiring the`aws/aws-sdk-php-symfony` package in your project's `composer.json`
```json
{
"require": {
"aws/aws-sdk-php-symfony": "~1.0"
"aws/aws-sdk-php-symfony": "~2.0"
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion src/AwsBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

class AwsBundle extends Bundle
{
const VERSION = '1.3.0';
const VERSION = '2.0.0';
}

0 comments on commit 2ffb768

Please sign in to comment.