Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
3d7bb1e6
Commit
3d7bb1e6
authored
Nov 16, 2010
by
Benjamin Eberlei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump Version and fix Phpunit Native Task
parent
acf3a741
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
build.xml
build.xml
+2
-2
Version.php
lib/Doctrine/DBAL/Version.php
+2
-2
NativePhpunitTask.php
tests/NativePhpunitTask.php
+1
-1
No files found.
build.xml
View file @
3d7bb1e6
...
@@ -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.
...
...
lib/Doctrine/DBAL/Version.php
View file @
3d7bb1e6
...
@@ -36,7 +36,7 @@ class Version
...
@@ -36,7 +36,7 @@ class Version
/**
/**
* Current Doctrine Version
* Current Doctrine Version
*/
*/
const
VERSION
=
'2.0.0RC
1
-DEV'
;
const
VERSION
=
'2.0.0RC
2
-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
tests/NativePhpunitTask.php
View file @
3d7bb1e6
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment