Skip to content

Commit 5a971b4

Browse files
committed
Bump version for 3.2.0-dev
1 parent bc38313 commit 5a971b4

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

Diff for: _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.2
17+
#modx.core.version = 3.2.0
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.2-pl
31+
#build.src.tree = v3.2.0-pl
3232

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

Diff for: _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.2" />
24-
<property name="modx.core.release" value="pl" />
23+
<property name="modx.core.version" value="3.2.0" />
24+
<property name="modx.core.release" value="dev" />
2525

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

Diff for: 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.2.0-pl (TBD)
6+
====================================
7+
8+
59
MODX Revolution 3.1.2-pl (April 2, 2025)
610
====================================
711
- Fix Template Access grid being initially empty when creating a new TV (#16678)

Diff for: core/docs/version.inc.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?php
22
$v= [];
33
$v['version']= '3'; // Current version.
4-
$v['major_version']= '1'; // Current major version.
5-
$v['minor_version']= '2'; // Current minor version.
6-
$v['patch_level']= 'pl'; // Current patch level.
4+
$v['major_version']= '2'; // Current major version.
5+
$v['minor_version']= '0'; // 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)