Skip to content

Commit

Permalink
Bump release for 3.0.6-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
opengeek committed Apr 10, 2024
1 parent fc5c56a commit 02b6d16
Show file tree
Hide file tree
Showing 4 changed files with 11 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.5
#modx.core.release = pl
#modx.core.version = 3.0.6
#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.5-pl
#build.src.tree = v3.0.6-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.5" />
<property name="modx.core.release" value="pl" />
<property name="modx.core.version" value="3.0.6" />
<property name="modx.core.release" value="dev" />

<!-- Set some common build properties -->
<property name="build.dir" value="${project.basedir}" />
Expand Down
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 3.0.6-dev (TBD)
====================================


MODX Revolution 3.0.5-pl (April 10, 2023)
====================================
- Log SQL errors during context cache generation (#16508)
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']= '5'; // Current minor version.
$v['patch_level']= 'pl'; // Current patch level.
$v['minor_version']= '6'; // 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 02b6d16

Please sign in to comment.