Skip to content

Commit

Permalink
preparing the release of the v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeSimonson committed Dec 25, 2016
1 parent 2d24936 commit c81147c
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 2 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,40 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]


## [1.5.0] - 2016-12-25

### Fixed
- [447: Fix typo in error code](https://github.com/doctrine/migrations/pull/447) thanks to @funivan
- [448: Removed unused import](https://github.com/doctrine/migrations/pull/448) thanks to @localheinz
- [451: Case insensitive method calls and types](https://github.com/doctrine/migrations/pull/451) thanks to @localheinz
- [449: Use the class keyword](https://github.com/doctrine/migrations/pull/449) thanks to @localheinz
- [453: Use better assertions](https://github.com/doctrine/migrations/pull/453) thanks to @localheinz
- [452: Fix the visibility of the AbstractTest](https://github.com/doctrine/migrations/pull/452) thanks to @localheinz
- [450: Use the short array syntax](https://github.com/doctrine/migrations/pull/450) thanks to @localheinz
- [464: Clean the github autogenerated zip archive](https://github.com/doctrine/migrations/pull/464) thanks to @mlocati
- [457: Fix an issue where the migration wheren't sorted propely](https://github.com/doctrine/migrations/pull/457) thanks to @JHGitty, @Charles68
- [451: Case insensitive method calls and types](https://github.com/doctrine/migrations/pull/451) thanks to @localheinz
- [471: Fix loading the configuration from a php file](https://github.com/doctrine/migrations/pull/471) thanks to @aaa2000
- [451: Case insensitive method calls and types](https://github.com/doctrine/migrations/pull/451) thanks to @localheinz
- [472: Change comment marker a cross platform one ](https://github.com/doctrine/migrations/pull/472) thanks to @aaa2000
- [476: Add test for the execute command](https://github.com/doctrine/migrations/pull/476) thanks to @chrisguitarguy
- [470: Case insensitive method calls and types](https://github.com/doctrine/migrations/pull/470) thanks to @abacaphiliac
- [489: Better help message in the execute command](https://github.com/doctrine/migrations/pull/489) thanks to @eko
- [500: Updating the dev dependencies](https://github.com/doctrine/migrations/pull/500) thanks to @mikeSimonson
- [501: Fix a bug in a rarely used message call](https://github.com/doctrine/migrations/pull/501) thanks to @Seldaek

### Changed
- [478: Changed the default generated version number to UTC](https://github.com/doctrine/migrations/pull/446) thanks to @c960657
- [479: Explicitly connecting to support master slave connections](https://github.com/doctrine/migrations/pull/479) thanks to @chrisguitarguy
- [482: Use strict comparaison in the generated migrations](https://github.com/doctrine/migrations/pull/482) thanks to @tifabien

### Added
- [470: Add uptodate command](https://github.com/doctrine/migrations/pull/470) thanks to @abacaphiliac
- [477: Add parameters to the output of the dry run migrations](https://github.com/doctrine/migrations/pull/477) thanks to @chrisguitarguy
- [497: Show the content of the generated file on the console](https://github.com/doctrine/migrations/pull/497) thanks to @ErikTrapman
- [480: Don't prompt the user for confirmation when there is nothing to do](https://github.com/doctrine/migrations/pull/480) thanks to @chrisguitarguy


## [1.4.1] - 2016-03-14
### Fixed
- [439: Add missing dependency in the phar build](https://github.com/doctrine/migrations/pull/439)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -42,7 +42,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "v1.5.x-dev"
"dev-master": "v1.6.x-dev"
}
},
"bin": [
Expand Down
2 changes: 1 addition & 1 deletion lib/Doctrine/DBAL/Migrations/MigrationsVersion.php
Expand Up @@ -21,7 +21,7 @@

class MigrationsVersion
{
private static $version = 'v1.4.0';
private static $version = 'v1.5.0';

public static function VERSION() {
$gitversion = '@git-version@';
Expand Down

0 comments on commit c81147c

Please sign in to comment.