Skip to content

Commit

Permalink
Bump version for 3.0.5-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
opengeek committed Oct 3, 2023
1 parent 8c01cae commit 7db402f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions _build/build.sample.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ composer.command = composer
#project.name.fs = modx

# Override to set the version and release strings
#modx.core.version = 3.0.4
#modx.core.release = pl
#modx.core.version = 3.0.5
#modx.core.release = dev

# these properties require a local Git clone in order to produce distributions
# Set this property to produce distribution packages from a Git archive
Expand All @@ -28,7 +28,7 @@ composer.command = composer
#build.nominify = true

# Override to pull source from a specific ref in the git repository
#build.src.tree = v3.0.4-pl
#build.src.tree = v3.0.5-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="3.0.4" />
<property name="modx.core.release" value="pl" />
<property name="modx.core.version" value="3.0.5" />
<property name="modx.core.release" value="dev" />

<!-- Set some common build properties -->
<property name="build.dir" value="${project.basedir}" />
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= [];
$v['version']= '3'; // Current version.
$v['major_version']= '0'; // Current major version.
$v['minor_version']= '4'; // Current minor version.
$v['patch_level']= 'pl'; // Current patch level.
$v['minor_version']= '5'; // 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 7db402f

Please sign in to comment.