Commit 3d7bb1e6 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Bump Version and fix Phpunit Native Task

parent acf3a741
...@@ -75,7 +75,7 @@ ...@@ -75,7 +75,7 @@
<!-- <!--
Builds DBAL package, preparing it for distribution. Builds DBAL package, preparing it for distribution.
--> -->
<target name="build-dbal" depends="test"> <target name="build-dbal" depends="prepare">
<copy todir="${build.dir}/doctrine-dbal"> <copy todir="${build.dir}/doctrine-dbal">
<fileset refid="shared-artifacts"/> <fileset refid="shared-artifacts"/>
</copy> </copy>
...@@ -93,7 +93,7 @@ ...@@ -93,7 +93,7 @@
<exec command="mv ${build.dir}/doctrine-dbal/Doctrine/DBAL/Version2.php ${build.dir}/doctrine-dbal/Doctrine/DBAL/Version.php" passthru="true" /> <exec command="mv ${build.dir}/doctrine-dbal/Doctrine/DBAL/Version2.php ${build.dir}/doctrine-dbal/Doctrine/DBAL/Version.php" passthru="true" />
</target> </target>
<target name="build" depends="test, build-dbal"/> <target name="build" depends="build-dbal"/>
<!-- <!--
Runs the full test suite. Runs the full test suite.
......
...@@ -36,7 +36,7 @@ class Version ...@@ -36,7 +36,7 @@ class Version
/** /**
* Current Doctrine Version * Current Doctrine Version
*/ */
const VERSION = '2.0.0RC1-DEV'; const VERSION = '2.0.0RC2-DEV';
/** /**
* Compares a Doctrine version with the current one. * Compares a Doctrine version with the current one.
...@@ -52,4 +52,4 @@ class Version ...@@ -52,4 +52,4 @@ class Version
return version_compare($version, $currentVersion); return version_compare($version, $currentVersion);
} }
} }
\ No newline at end of file
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
* to kontakt@beberlei.de so I can send you a copy immediately. * to kontakt@beberlei.de so I can send you a copy immediately.
*/ */
require_once 'PHPUnit/Framework.php'; require_once 'PHPUnit/Autoload.php';
/** /**
* A more flexible and powerful PHPUnit Task than the native Phing one. * A more flexible and powerful PHPUnit Task than the native Phing one.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment