Skip to content

Commit

Permalink
MODX Revolution 2.8.8-pl
Browse files Browse the repository at this point in the history
  • Loading branch information
opengeek committed Nov 21, 2024
1 parent 3845ab1 commit 41d4ecd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _build/build.sample.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ git.command = git

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

# these properties require a local Git clone in order to produce distributions
# Set this property to produce distribution packages from a Git archive
Expand Down
2 changes: 1 addition & 1 deletion _build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<!-- Set the project version -->
<property name="modx.core.version" value="2.8.8" />
<property name="modx.core.release" value="dev" />
<property name="modx.core.release" value="pl" />

<!-- Set some common build properties -->
<property name="build.dir" value="${project.basedir}" />
Expand Down
9 changes: 7 additions & 2 deletions core/docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
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 2.8.8-pl (TBD)
MODX Revolution 2.8.8-pl (November 21, 2024)
====================================

- Fix rendering of user-entered values in editable listbox-multiple TVs (#16640)
- Update of the search processor for content-based search (#16560)
- Fully support comma-separated constraints in form customization (#16417)
- Add an asterisk to label of required TVs (#16594)
- Do not dynamically assign modProcessorResponse to modConnectorResponse (#16563)
- Avoid modLexicon deprecation warning in PHP 8.2+ (#16589)

MODX Revolution 2.8.7-pl (April 9, 2024)
====================================
Expand Down
2 changes: 1 addition & 1 deletion core/docs/version.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
$v['version']= '2'; // Current version.
$v['major_version']= '8'; // Current major version.
$v['minor_version']= '8'; // Current minor version.
$v['patch_level']= 'dev'; // Current patch level.
$v['patch_level']= 'pl'; // 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 41d4ecd

Please sign in to comment.