File tree 4 files changed +10
-6
lines changed
4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ composer.command = composer
14
14
# project.name.fs = modx
15
15
16
16
# Override to set the version and release strings
17
- # modx.core.version = 3.1.0
17
+ # modx.core.version = 3.1.1
18
18
# modx.core.release = dev
19
19
20
20
# these properties require a local Git clone in order to produce distributions
@@ -28,7 +28,7 @@ composer.command = composer
28
28
# build.nominify = true
29
29
30
30
# 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
32
32
33
33
# Override to turn off the additional of timestamps to the distribution packages (used for nightlies)
34
34
# build.timestamp = false
Original file line number Diff line number Diff line change 20
20
<property name =" project.manager.dir" value =" ${ project.root.dir } /manager" />
21
21
22
22
<!-- 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 " />
25
25
26
26
<!-- Set some common build properties -->
27
27
<property name =" build.dir" value =" ${ project.basedir } " />
Original file line number Diff line number Diff line change 2
2
This file shows the changes in recent releases of MODX. The most current release is usually the
3
3
development release, and is only shown to give an idea of what's currently in the pipeline.
4
4
5
+ MODX Revolution 3.1.1-pl (TBD)
6
+ ====================================
7
+
8
+
5
9
MODX Revolution 3.1.0-pl (December 18, 2024)
6
10
====================================
7
11
- Make date display consistent across manager components (#16604)
Original file line number Diff line number Diff line change 2
2
$ v = [];
3
3
$ v ['version ' ]= '3 ' ; // Current version.
4
4
$ 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.
7
7
$ v ['code_name ' ]= 'Revolution ' ; // Current codename.
8
8
$ v ['distro ' ]= '@git@ ' ;
9
9
$ 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 ' ]}" : "" );
You can’t perform that action at this time.
0 commit comments