Skip to content

Commit

Permalink
Sticking to doctrine convention for the tag name (lowercase)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeSimonson committed Mar 22, 2015
1 parent 2f63623 commit 67785e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions UPGRADE-1.0.MD
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
UPGRADE FROM 1.0-alpha1 to 1.0.0-alpha2
UPGRADE FROM 1.0-alpha1 to 1.0.0-alpha3
=======================================

## AbstractMigration
Expand Down Expand Up @@ -30,9 +30,10 @@ If you want to go back to the previous behavior just make a request on the bug t
### Before:

MigrationsVersion::VERSION used to be a property.
The returned value was fanciful
The returned value was fanciful.

### After:

It is now a a function so that a different value can be automatically send back if it's a modified version that's used.
The returned value is now the git tag.
The tag is in lowercase as the other doctrine projects.
2 changes: 1 addition & 1 deletion lib/Doctrine/DBAL/Migrations/MigrationsVersion.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

class MigrationsVersion
{
private static $version = 'v1.0-ALPHA2';
private static $version = 'v1.0-alpha3';

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

0 comments on commit 67785e9

Please sign in to comment.