Skip to content

Commit ae3560e

Browse files
committed
Bump version for 3.1.1-dev
1 parent 62b154a commit ae3560e

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

_build/build.sample.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ composer.command = composer
1414
#project.name.fs = modx
1515

1616
# Override to set the version and release strings
17-
#modx.core.version = 3.1.0
17+
#modx.core.version = 3.1.1
1818
#modx.core.release = dev
1919

2020
# these properties require a local Git clone in order to produce distributions
@@ -28,7 +28,7 @@ composer.command = composer
2828
#build.nominify = true
2929

3030
# Override to pull source from a specific ref in the git repository
31-
#build.src.tree = v3.1.0-pl
31+
#build.src.tree = v3.1.1-pl
3232

3333
# Override to turn off the additional of timestamps to the distribution packages (used for nightlies)
3434
#build.timestamp = false

_build/build.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<property name="project.manager.dir" value="${project.root.dir}/manager" />
2121

2222
<!-- Set the project version -->
23-
<property name="modx.core.version" value="3.1.0" />
24-
<property name="modx.core.release" value="pl" />
23+
<property name="modx.core.version" value="3.1.1" />
24+
<property name="modx.core.release" value="dev" />
2525

2626
<!-- Set some common build properties -->
2727
<property name="build.dir" value="${project.basedir}" />

core/docs/changelog.txt

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
This file shows the changes in recent releases of MODX. The most current release is usually the
33
development release, and is only shown to give an idea of what's currently in the pipeline.
44

5+
MODX Revolution 3.1.1-pl (TBD)
6+
====================================
7+
8+
59
MODX Revolution 3.1.0-pl (December 18, 2024)
610
====================================
711
- Make date display consistent across manager components (#16604)

core/docs/version.inc.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
$v= [];
33
$v['version']= '3'; // Current version.
44
$v['major_version']= '1'; // Current major version.
5-
$v['minor_version']= '0'; // Current minor version.
6-
$v['patch_level']= 'pl'; // Current patch level.
5+
$v['minor_version']= '1'; // Current minor version.
6+
$v['patch_level']= 'dev'; // Current patch level.
77
$v['code_name']= 'Revolution'; // Current codename.
88
$v['distro']= '@git@';
99
$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']}" : "");

0 commit comments

Comments
 (0)