Skip to content

Commit 3aa3851

Browse files
committed
Release of version 5.3.0
1 parent 4e8e76e commit 3aa3851

File tree

6 files changed

+18
-14
lines changed

6 files changed

+18
-14
lines changed

MIGRATING.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Modules. It provides an overview of the new features and changed behaviors
88
that will be encountered when upgrading.
99

1010

11-
v5.3 (not yet released)
12-
=======================
11+
v5.3
12+
====
1313

1414
Module cache
1515
------------
@@ -146,7 +146,7 @@ query.
146146
147147
:ps:`$` module config --reset avail_output
148148
:ps:`$` module config avail_output
149-
Modules Release 5.3.0 (2023-XX-XX)
149+
Modules Release 5.3.0 (2023-05-14)
150150
151151
- :sgrhi:`Config. name` ---------.- :sgrhi:`Value (set by if default overridden)` ---------------
152152
avail_output modulepath:alias:dirwsym:sym:tag:variantifspec:key
@@ -249,13 +249,13 @@ updated to report variant information:
249249
.. parsed-literal::
250250
251251
:ps:`$` module config list_terse_output
252-
Modules Release 5.3.0 (2023-XX-XX)
252+
Modules Release 5.3.0 (2023-05-14)
253253
254254
- :sgrhi:`Config. name` ---------.- :sgrhi:`Value (set by if default overridden)` ---------------
255255
list_terse_output header
256256
:ps:`$` module config list_terse_output +variant
257257
:ps:`$` module config list_terse_output
258-
Modules Release 5.3.0 (2023-XX-XX)
258+
Modules Release 5.3.0 (2023-05-14)
259259
260260
- :sgrhi:`Config. name` ---------.- :sgrhi:`Value (set by if default overridden)` ---------------
261261
list_terse_output header:variant (env-var)

NEWS.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ documents those changes that are of interest to users and admins.
88

99
.. _5.3 release notes:
1010

11-
Modules 5.3.0 (not yet released)
12-
--------------------------------
11+
Modules 5.3.0 (2023-05-14)
12+
--------------------------
1313

1414
* Add :ref:`module-cache` design notes.
1515
* Add :subcmd:`cachebuild` sub-command to create cache for modulepaths
@@ -148,6 +148,8 @@ Modules 5.3.0 (not yet released)
148148
:mconfig:`variant_shortcut` configuration options to indicate value
149149
should respectively be appended to or subtracted from current configuration
150150
option value.
151+
* Fix :subcmd:`switch` sub-command not to unload *sticky* module when
152+
switched-on module does not exist. (fix issue #492)
151153

152154

153155
.. _5.2 release notes:
@@ -311,8 +313,6 @@ Modules 5.2.0 (2022-11-08)
311313
page.
312314
* Doc: extend :ref:`Collections` section with examples in :ref:`module(1)` man
313315
page.
314-
* Fix :subcmd:`switch` sub-command not to unload *sticky* module when
315-
switched-on module does not exist. (fix issue #492)
316316

317317
.. _Nagelfar: http://nagelfar.sourceforge.net/
318318
.. _ShellCheck: https://www.shellcheck.net/

contrib/rpm/environment-modules.spec.in

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%global vimdatadir %{_datadir}/vim/vimfiles
33

44
Name: environment-modules
5-
Version: 5.2.0
5+
Version: 5.3.0
66
Release: @MODULES_RPM_RELEASE@%{?dist}
77
Summary: Provides dynamic modification of a user's environment
88

@@ -227,6 +227,10 @@ fi
227227

228228

229229
%changelog
230+
* Sun May 14 2023 Xavier Delaruelle <[email protected]> - 5.3.0-1
231+
- Update to 5.3.0
232+
- Migrate to SPDX license format
233+
230234
* Tue Nov 08 2022 Xavier Delaruelle <[email protected]> - 5.2.0-1
231235
- Update to 5.2.0
232236
- Recommends Nagelfar Tcl syntax linter

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def get_version_release_from_git():
7979
else:
8080
return version, version + '+' + branch + '-' + tags
8181
else:
82-
return '5.2.0', ''
82+
return '5.3.0', ''
8383

8484
# The short X.Y version.
8585
# The full version, including alpha/beta/rc tags.

testsuite/modules.51-scan/020-avail_output-variant.exp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impreq/loadsubp loadany/1.0 output/1.0 variant/5.0
8686
impreq/loadunk loadany/2.0 path-cmd-opt/1.0 variant/5.1{foo=val1,val2,val3}
8787
impreq/mix mfvar/1.0 path-cmd-opt/1.1 variant/6.0
8888
impreq/prereq mfvar/2.0 path-cmd-opt/1.2 variant/7.0{foo=val1,val2,val3}
89-
impreq/switch1 mfvar/Modules/5.2.0 path-cmd-opt/1.3 variant/7.1
89+
impreq/switch1 mfvar/Modules/5.3.0 path-cmd-opt/1.3 variant/7.1
9090
impreq/switch1err mod-to-sh/1.0 path-cmd-opt/1.4 variant/8.0
9191
impreq/switch1unk mod-to-sh/1.1 path-cmd-opt/1.5 'variant/w s'
9292
impreq/switch2 mod-to-sh/2.0 path-cmd-opt/2.0 versioncmp/1.0
@@ -189,7 +189,7 @@ loadany/1.0
189189
loadany/2.0
190190
mfvar/1.0
191191
mfvar/2.0
192-
mfvar/Modules/5.2.0
192+
mfvar/Modules/5.3.0
193193
mod-to-sh/1.0
194194
mod-to-sh/1.1
195195
mod-to-sh/2.0

version.inc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Release definitions shared across the Makefiles of this project
22
# run make to generate version.inc
33

4-
MODULES_RELEASE := 5.2.0
4+
MODULES_RELEASE := 5.3.0
55
MODULES_BUILD_HASH := $Format:%h$
66
MODULES_BUILD_REFS := $Format:%D$
77
MODULES_BUILD_FDATE := $Format:%ci$

0 commit comments

Comments
 (0)