Skip to content

Commit 1bb0199

Browse files
committed
Release of version 5.0.1
1 parent 20f4f5e commit 1bb0199

File tree

4 files changed

+40
-3
lines changed

4 files changed

+40
-3
lines changed

NEWS.rst

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

99
.. _5.0 release notes:
1010

11+
Modules 5.0.1 (2021-10-16)
12+
--------------------------
13+
14+
* Doc: add *How to preserve my loaded environment when running screen* entry
15+
in :ref:`FAQ`.
16+
* Fix the advanced version specifier resolution when the
17+
:mconfig:`extended_default` option is off and :mconfig:`icase` option is on
18+
when resolving version list specification. (fix issue #411)
19+
* Doc: improve the :ref:`log-module-command` cookbook to rely on the ``trace``
20+
Tcl command to track every modulefile evaluation and module/ml procedure
21+
calls. (fix issue #412)
22+
* Doc: fix missing space between list entries in :ref:`variants` design doc.
23+
(fix issue #413)
24+
* Correctly detect tags set on loaded modules when refreshing them.
25+
* Set the :envvar:`__MODULES_AUTOINIT_INPROGRESS` environment variable when
26+
running the :subcmd:`autoinit` sub-command and quit autoinit process if this
27+
variable is found defined and equal to 1 when starting it. Ensure this way
28+
that an autoinit process will not be triggered indefinitely by itself when
29+
the :mconfig:`set_shell_startup` option is enabled and some module loaded at
30+
initialization time relies on the execution of a bash script. (fix issue
31+
#414)
32+
* Remove warning message when unloading a :mfcmd:`prepend-path` or
33+
:mfcmd:`append-path` modulefile command with ``--duplicates`` option set.
34+
(fix issue #421)
35+
* Clarify the module sub-commands that are allowed to be used within a
36+
modulefile. (fix issue #423)
37+
* Install: set in the module magic cookie of the :file:`initrc` configuration
38+
file installed by default the version of Modules required to evaluate this
39+
file.
40+
* Doc: fix documentation of :mfcmd:`getenv` modulefile command to describe
41+
that an empty string is now returned when designated environment variable is
42+
not defined and no default value to return is specified.
43+
44+
1145
Modules 5.0.0 (2021-09-12)
1246
--------------------------
1347

contrib/rpm/environment-modules.spec.in

Lines changed: 4 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.0.0
5+
Version: 5.0.1
66
Release: @MODULES_RPM_RELEASE@%{?dist}
77
Summary: Provides dynamic modification of a user's environment
88

@@ -211,6 +211,9 @@ fi
211211

212212

213213
%changelog
214+
* Sat Oct 16 2021 Xavier Delaruelle <[email protected]> - 5.0.1-1
215+
- Update to 5.0.1
216+
214217
* Sun Sep 12 2021 Xavier Delaruelle <[email protected]> - 5.0.0-1
215218
- Update to 5.0.0
216219
- Configuration guide example.txt is replaced by more up to date INSTALL.txt

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.0.0', ''
82+
return '5.0.1', ''
8383

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

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.0.0
4+
MODULES_RELEASE := 5.0.1
55
MODULES_BUILD_HASH := $Format:%h$
66
MODULES_BUILD_REFS := $Format:%D$
77
MODULES_BUILD_FDATE := $Format:%ci$

0 commit comments

Comments
 (0)