Skip to content

Commit

Permalink
Bump version for 2.8.7-dev
Browse files Browse the repository at this point in the history
Also increase minimum PHP requirement to 5.6
  • Loading branch information
opengeek committed Feb 16, 2024
1 parent 3f887dc commit 155d927
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions _build/build.sample.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ git.command = git
#project.name.fs = modx

# Override to set the version and release strings
#modx.core.version = 2.8.6
#modx.core.version = 2.8.7
#modx.core.release = dev

# these properties require a local Git clone in order to produce distributions
Expand All @@ -25,7 +25,7 @@ git.command = git
#build.nominify = true

# Override to pull source from a specific ref in the git repository
#build.src.tree = v2.8.6-pl
#build.src.tree = v2.8.7-pl

# Override to turn off the additional of timestamps to the distribution packages (used for nightlies)
#build.timestamp = false
4 changes: 2 additions & 2 deletions _build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<property name="project.manager.dir" value="${project.root.dir}/manager" />

<!-- Set the project version -->
<property name="modx.core.version" value="2.8.6" />
<property name="modx.core.release" value="pl" />
<property name="modx.core.version" value="2.8.7" />
<property name="modx.core.release" value="dev" />

<!-- Set some common build properties -->
<property name="build.dir" value="${project.basedir}" />
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@
"php-coveralls/php-coveralls": "~2.1"
},
"require": {
"php": ">=5.3.3"
"php": ">=5.6"
}
}
4 changes: 4 additions & 0 deletions core/docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
This file shows the changes in recent releases of MODX. The most current release is usually the
development release, and is only shown to give an idea of what's currently in the pipeline.

MODX Revolution 2.8.7-pl (TBD)
====================================


MODX Revolution 2.8.6-pl (September 28, 2023)
====================================
- Change default gravatar type for user (#16461)
Expand Down
4 changes: 2 additions & 2 deletions core/docs/version.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
$v= array ();
$v['version']= '2'; // Current version.
$v['major_version']= '8'; // Current major version.
$v['minor_version']= '6'; // Current minor version.
$v['patch_level']= 'pl'; // Current patch level.
$v['minor_version']= '7'; // Current minor version.
$v['patch_level']= 'dev'; // Current patch level.
$v['code_name']= 'Revolution'; // Current codename.
$v['distro']= '@git@';
$v['full_version']= $v['version'] . ($v['major_version'] ? ".{$v['major_version']}" : ".0") . ($v['minor_version'] ? ".{$v['minor_version']}" : ".0") . ($v['patch_level'] ? "-{$v['patch_level']}" : "");
Expand Down

0 comments on commit 155d927

Please sign in to comment.