From ae3560e1278a3fca54a8c968d8580ad6589a05ee Mon Sep 17 00:00:00 2001 From: Jason Coward Date: Mon, 6 Jan 2025 08:33:14 -0700 Subject: [PATCH] Bump version for 3.1.1-dev --- _build/build.sample.properties | 4 ++-- _build/build.xml | 4 ++-- core/docs/changelog.txt | 4 ++++ core/docs/version.inc.php | 4 ++-- 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/_build/build.sample.properties b/_build/build.sample.properties index 3bb600b7ebb..0bd39f2a397 100644 --- a/_build/build.sample.properties +++ b/_build/build.sample.properties @@ -14,7 +14,7 @@ composer.command = composer #project.name.fs = modx # Override to set the version and release strings -#modx.core.version = 3.1.0 +#modx.core.version = 3.1.1 #modx.core.release = dev # these properties require a local Git clone in order to produce distributions @@ -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.1.0-pl +#build.src.tree = v3.1.1-pl # Override to turn off the additional of timestamps to the distribution packages (used for nightlies) #build.timestamp = false diff --git a/_build/build.xml b/_build/build.xml index 255c7bf16ac..ffcf14f8a7c 100644 --- a/_build/build.xml +++ b/_build/build.xml @@ -20,8 +20,8 @@ - - + + diff --git a/core/docs/changelog.txt b/core/docs/changelog.txt index 49b2996dbc0..81356461da6 100644 --- a/core/docs/changelog.txt +++ b/core/docs/changelog.txt @@ -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.1.1-pl (TBD) +==================================== + + MODX Revolution 3.1.0-pl (December 18, 2024) ==================================== - Make date display consistent across manager components (#16604) diff --git a/core/docs/version.inc.php b/core/docs/version.inc.php index e031d4998ca..72fd99203e4 100644 --- a/core/docs/version.inc.php +++ b/core/docs/version.inc.php @@ -2,8 +2,8 @@ $v= []; $v['version']= '3'; // Current version. $v['major_version']= '1'; // Current major version. -$v['minor_version']= '0'; // Current minor version. -$v['patch_level']= 'pl'; // Current patch level. +$v['minor_version']= '1'; // 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']}" : "");