Skip to content
This repository has been archived by the owner on Dec 11, 2018. It is now read-only.

Commit

Permalink
Fix bug in VersionIncrementTask
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed Jan 3, 2012
1 parent efa94de commit c9ff83d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VersionIncrementTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
class VersionIncrementTask extends Task
{
/** Pattern to match unstable versions */
const UNSTABLE_PATTERN = '((-RC[0-9]+|-DEV|-ALPHA|-BETA))i';
const UNSTABLE_PATTERN = '((-RC[0-9]+|-DEV|-ALPHA[0-9]+|-BETA[0-9]+))i';

protected $version;

Expand Down

0 comments on commit c9ff83d

Please sign in to comment.