Skip to content

Commit 2a430cd

Browse files
committed
doc: rename diff_with_c-version to diff_v3_v4
1 parent 78e0688 commit 2a430cd

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
/contrib/scripts/add.modules
1717
/contrib/modulefiles/modules
1818
/compat
19-
/doc/diff_with_c-version.txt
19+
/doc/diff_v3_v4.txt
2020
/doc/html/*.html
2121
/doc/man
2222
/doc/source/module.pod

NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,10 @@ please see `MIGRATING`.
8888
* Install: update RPM spec file to handle compatibility version as a
8989
'compat' sub-package.
9090
* Add completion script for Fish shell (contribution from BEFH).
91+
* Doc: extend content of diff_v3_v4 to details all noticeable changes
92+
between v3.2 and v4.0.
93+
* Doc: introduce MIGRATING guide to learn the major changes when moving
94+
from v3.2 to v4.0.
9195

9296
Above changes describe the differences with modules-tcl release 1.923. To
9397
learn about the changes between Modules 4.0 and last Modules 3.2 release,

contrib/rpm/environment-modules.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ fi
176176
%else
177177
%license COPYING.GPLv2
178178
%endif
179-
%doc ChangeLog NEWS README MIGRATING doc/diff_with_c-version.txt
179+
%doc ChangeLog NEWS README MIGRATING doc/diff_v3_v4.txt
180180
%{_sysconfdir}/modulefiles
181181
%if 0%{?fedora}
182182
%ghost %{_sysconfdir}/profile.d/modules.csh

doc/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ else
2727
man: $(MAN1_DIR)/module.1 $(MAN4_DIR)/modulefile.4
2828
endif
2929

30-
txt: diff_with_c-version.txt
30+
txt: diff_v3_v4.txt
3131

3232
html: $(HTML_DIR)/module.html $(HTML_DIR)/modulefile.html \
33-
$(HTML_DIR)/diff_with_c-version.html
33+
$(HTML_DIR)/diff_v3_v4.html
3434

3535
all: html man txt
3636

@@ -71,7 +71,7 @@ install: all
7171
mkdir -p $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(mandir)/man4
7272
ifeq ($(docinstall),y)
7373
mkdir -p $(DESTDIR)$(docdir)
74-
cp diff_with_c-version.txt $(DESTDIR)$(docdir)/
74+
cp diff_v3_v4.txt $(DESTDIR)$(docdir)/
7575
cp example.txt $(DESTDIR)$(docdir)/
7676
endif
7777
cp $(MAN1_DIR)/module.1 $(DESTDIR)$(mandir)/man1/
@@ -83,7 +83,7 @@ endif
8383

8484
uninstall:
8585
ifeq ($(docinstall),y)
86-
rm -f $(DESTDIR)$(docdir)/diff_with_c-version.txt
86+
rm -f $(DESTDIR)$(docdir)/diff_v3_v4.txt
8787
rm -f $(DESTDIR)$(docdir)/example.txt
8888
rmdir $(DESTDIR)$(docdir)
8989
endif
@@ -109,5 +109,5 @@ endif
109109
ifneq ($(wildcard $(MAN_DIR)),)
110110
rmdir $(MAN_DIR)
111111
endif
112-
rm -f diff_with_c-version.txt
112+
rm -f diff_v3_v4.txt
113113
rm -f pod*.tmp

doc/source/diff_with_c-version.pod renamed to doc/source/diff_v3_v4.pod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
=head1 Slight differences between versions 3.2 and 4
1+
=head1 Differences between versions 3.2 and 4
22

33
This document lists functionality differences between Modules version 3.2 and Modules version 4. Modules version 3.2 is also referred in this document as I<compatibility version> whereas Modules version 4 is also referred as I<new main version>. Modules version 4 is based on what was previously called Modules-Tcl. The goal of this document is to reference the features of the compatibility version that are missing or behave differently on the new main version and the features that can only be found on this new version.
44

0 commit comments

Comments
 (0)