mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Add next-version task.
This commit is contained in:
parent
864cb3920c
commit
41bbc02603
2 changed files with 17 additions and 2 deletions
|
@ -24,7 +24,7 @@ App::uses('Debugger', 'Utility');
|
||||||
<p>For updates and important announcements, visit http://cakefest.org</p>
|
<p>For updates and important announcements, visit http://cakefest.org</p>
|
||||||
</iframe>
|
</iframe>
|
||||||
<h2><?php echo __d('cake_dev', 'Release Notes for CakePHP %s.', Configure::version()); ?></h2>
|
<h2><?php echo __d('cake_dev', 'Release Notes for CakePHP %s.', Configure::version()); ?></h2>
|
||||||
<a href="http://cakephp.org/changelogs/2.0.5"><?php echo __d('cake_dev', 'Read the changelog'); ?> </a>
|
<a href="http://cakephp.org/changelogs/<?php echo Configure::version(); ?>"><?php echo __d('cake_dev', 'Read the changelog'); ?> </a>
|
||||||
<?php
|
<?php
|
||||||
if (Configure::read('debug') > 0):
|
if (Configure::read('debug') > 0):
|
||||||
Debugger::checkSecurityKeys();
|
Debugger::checkSecurityKeys();
|
||||||
|
|
17
build.xml
17
build.xml
|
@ -40,7 +40,7 @@
|
||||||
|
|
||||||
<exec executable="php" outputProperty="version">
|
<exec executable="php" outputProperty="version">
|
||||||
<arg value="-r" />
|
<arg value="-r" />
|
||||||
<arg value="$fh = file('./lib/Cake/VERSION.txt'); echo strtoupper(array_pop($fh));" />
|
<arg value="$fh = file('./lib/Cake/VERSION.txt'); echo array_pop($fh);" />
|
||||||
</exec>
|
</exec>
|
||||||
|
|
||||||
<!-- set PEAR stability based on version number. -->
|
<!-- set PEAR stability based on version number. -->
|
||||||
|
@ -121,5 +121,20 @@
|
||||||
<target name="build" depends="generate-package" />
|
<target name="build" depends="generate-package" />
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Bump the version number and commit that.
|
||||||
|
-->
|
||||||
|
<target name="next-version" depends="prepare">
|
||||||
|
<echo msg="Incrementing version." />
|
||||||
|
<propertyprompt propertyName="release_version" defaultValue="${version}" promptText="Enter version to be released (without -DEV)"/>
|
||||||
|
<echo msg="New version will be ${release_version}" />
|
||||||
|
<echo msg="$file = file_get_contents('./lib/Cake/VERSION.txt'); $file = str_replace('${version}', '${release_version}', $file); file_put_contents('./lib/Cake/VERSION.txt', $file);" />
|
||||||
|
<exec executable="php">
|
||||||
|
<arg value="-r" />
|
||||||
|
<arg value="$file = file_get_contents('./lib/Cake/VERSION.txt'); $file = str_replace('${version}', '${release_version}', $file); file_put_contents('./lib/Cake/VERSION.txt', $file);" />
|
||||||
|
</exec>
|
||||||
|
|
||||||
|
</target>
|
||||||
|
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in a new issue