Skip to content

Commit b7bd5aa

Browse files
committed
Release of version 5.1.0
1 parent b6e1765 commit b7bd5aa

File tree

16 files changed

+22
-18
lines changed

16 files changed

+22
-18
lines changed

MIGRATING.rst

Lines changed: 2 additions & 2 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.1 (not yet released)
12-
=======================
11+
v5.1
12+
====
1313

1414
This new version is backward-compatible with previous version 5 release. It
1515
fixes bugs but also introduces new functionalities that are described in this

NEWS.rst

Lines changed: 2 additions & 2 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.1 release notes:
1010

11-
Modules 5.1.0 (not yet released)
12-
--------------------------------
11+
Modules 5.1.0 (2022-04-30)
12+
--------------------------
1313

1414
* Allow to declare :mfcmd:`variant` with no list of accepted value. Such
1515
variant accepts any value specified. (fix issue #405)

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

@@ -222,6 +222,10 @@ fi
222222

223223

224224
%changelog
225+
* Sat Apr 30 2022 Xavier Delaruelle <[email protected]> - 5.1.0-1
226+
- Update to 5.1.0
227+
- Install shell completion scripts in system-wide shell-specific locations
228+
225229
* Sat Oct 16 2021 Xavier Delaruelle <[email protected]> - 5.0.1-1
226230
- Update to 5.0.1
227231

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.1', ''
82+
return '5.1.0', ''
8383

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

lib/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([Envmodules],[1.4.0],[[email protected]],[],[http://modules.sf.net])
5+
AC_INIT([Envmodules],[1.4.1],[[email protected]],[],[http://modules.sf.net])
66
AC_CONFIG_SRCDIR([envmodules.c])
77
AC_CONFIG_HEADERS([config.h])
88

tcl/subcmd.tcl.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ proc cmdModuleSave {{coll default}} {
537537
}
538538
# generate collection content with header indicating oldest Modules version
539539
# compatible with collection syntax
540-
set coll_header [expr {[llength $curr_tag_arrser] > 0 ? {#%Module5.0} :\
540+
set coll_header [expr {[llength $curr_tag_arrser] > 0 ? {#%Module5.1} :\
541541
{}}]
542542

543543
set save [formatCollectionContent [getModulePathList returnempty 0]\

testsuite/home/coll40

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#%Module5.0
1+
#%Module5.1
22
module use --append testsuite/modulefiles.3
33
module load --tag= tag/8.0
44
module load foo/1.0

testsuite/home/coll41

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#%Module5.0
1+
#%Module5.1
22
module use --append testsuite/modulefiles.3
33
module load --tag=foo
44
module load --tag=bar foo/1.0

testsuite/home/coll42

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#%Module5.0
1+
#%Module5.1
22
module use --append testsuite/modulefiles.3
33
module load --tag=
44
module load foo/1.0

testsuite/home/coll43

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#%Module5.0
1+
#%Module5.1
22
module use --append testsuite/modulefiles.3
33
module load --tag tag/8.0
44
module load foo/1.0

0 commit comments

Comments
 (0)