commit b72d9af52c61e0242781aff4eea664d5c2687759
parent a9ccd99b905165eeee7c4e277a879ff4d0c2fb55
Author: Benno Schulenberg <bensberg@telfort.nl>
Date: Tue, 2 Mar 2021 19:31:28 +0100
bump version numbers and add a news item for the 5.6.1 release
Diffstat:
9 files changed, 24 insertions(+), 10 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,13 @@
+Changes between v5.6 and v5.6.1:
+--------------------------------
+
+Benno Schulenberg (4):
+ bump version numbers and add a news item for the 5.6.1 release
+ options: rename 'highlightcolor' to the more distinct 'spotlightcolor'
+ search: correctly colorize a match also when softwrapping is active
+ tweaks: rename a symbol, to better match the corresponding option
+
+
Changes between v5.5 and v5.6:
------------------------------
diff --git a/NEWS b/NEWS
@@ -1,3 +1,7 @@
+2021.03.03 - GNU nano 5.6.1 "Geelgors"
+• Search matches are properly colorized in softwrap mode too.
+• Option 'highlightcolor' has been renamed to 'spotlightcolor'.
+
2021.02.24 - GNU nano 5.6 "Wielewaal"
• A search match gets highlighted (in black on yellow by default),
in addition to placing the cursor at the start of the match.
diff --git a/configure.ac b/configure.ac
@@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see https://www.gnu.org/licenses/.
-AC_INIT([GNU nano], [5.6], [nano-devel@gnu.org], [nano])
+AC_INIT([GNU nano], [5.6.1], [nano-devel@gnu.org], [nano])
AC_CONFIG_SRCDIR([src/nano.c])
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE([1.14])
diff --git a/doc/faq.html b/doc/faq.html
@@ -89,7 +89,7 @@
<h3><a name="1.3"></a>1.3. Why the name change from TIP?</h3>
<blockquote><p>On January 10, 2000, TIP was officially renamed to nano because of a namespace conflict with another program called 'tip'. The original 'tip' program "establishes a full duplex terminal connection to a remote host", and was included with many older Unix systems (and newer ones like Solaris). The conflict was not noticed at first because there is no 'tip' utility included with most GNU/Linux distributions (where nano was developed).</p></blockquote>
<h3><a name="1.4"></a>1.4. What is the current version of nano?</h3>
-<blockquote><p>The current version of nano <i>should</i> be <b>5.6</b>. Of course, you should always check the <a href="https://nano-editor.org/">nano homepage</a> to see what the latest and greatest version is.</p></blockquote>
+<blockquote><p>The current version of nano <i>should</i> be <b>5.6.1</b>. Of course, you should always check the <a href="https://nano-editor.org/">nano homepage</a> to see what the latest and greatest version is.</p></blockquote>
<h3><a name="1.5"></a>1.5. I want to read the man page without having to download the program!</h3>
<blockquote><p>Jeez, demanding, aren't we? Okay, look <a href="https://nano-editor.org/dist/latest/nano.1.html">here</a>.</p></blockquote>
<hr width="100%">
diff --git a/doc/nano.1 b/doc/nano.1
@@ -16,7 +16,7 @@
.\" Documentation License along with this program. If not, see
.\" <https://www.gnu.org/licenses/>.
.\"
-.TH NANO 1 "version 5.6" "February 2021"
+.TH NANO 1 "version 5.6.1" "March 2021"
.SH NAME
nano \- Nano's ANOther editor, inspired by Pico
diff --git a/doc/nano.texi b/doc/nano.texi
@@ -8,8 +8,8 @@
@smallbook
@set EDITION 0.5
-@set VERSION 5.6
-@set UPDATED February 2021
+@set VERSION 5.6.1
+@set UPDATED March 2021
@dircategory Editors
@direntry
@@ -23,7 +23,7 @@
@titlepage
@title GNU @command{nano}
@subtitle a small and friendly text editor
-@subtitle version 5.6
+@subtitle version 5.6.1
@author Chris Allegretta
@page
@@ -63,7 +63,7 @@ e-mail: @email{chrisa@@asty.org}@*
@node Top
@top
-This manual documents the GNU @command{nano} editor, version 5.6.
+This manual documents the GNU @command{nano} editor, version 5.6.1.
@menu
* Introduction::
diff --git a/doc/nanorc.5 b/doc/nanorc.5
@@ -16,7 +16,7 @@
.\" Documentation License along with this program. If not, see
.\" <https://www.gnu.org/licenses/>.
.\"
-.TH NANORC 5 "version 5.6" "February 2021"
+.TH NANORC 5 "version 5.6.1" "March 2021"
.SH NAME
nanorc \- GNU nano's configuration file
diff --git a/doc/rnano.1 b/doc/rnano.1
@@ -16,7 +16,7 @@
.\" Documentation License along with this program. If not, see
.\" <https://www.gnu.org/licenses/>.
.\"
-.TH RNANO 1 "version 5.6" "February 2021"
+.TH RNANO 1 "version 5.6.1" "March 2021"
.SH NAME
rnano \- a restricted nano
diff --git a/roll-a-release.sh b/roll-a-release.sh
@@ -1,6 +1,6 @@
#!/bin/bash
-VERSION="5.6"
+VERSION="5.6.1"
./configure -C --enable-tiny && make && ./configure -C &&