From 7b48a9f671c26be26798af6c85ccaca9df28b8dd Mon Sep 17 00:00:00 2001 From: Benno Schulenberg Date: Wed, 18 Jan 2023 09:06:24 +0100 Subject: [PATCH] bump version numbers and add a news item for the 7.2 release --- ChangeLog | 17 +++++++++++++++++ NEWS | 3 +++ README | 2 +- configure.ac | 2 +- doc/faq.html | 2 +- doc/nano.1 | 2 +- doc/nano.texi | 8 ++++---- doc/nanorc.5 | 2 +- doc/rnano.1 | 2 +- roll-a-release.sh | 2 +- 10 files changed, 31 insertions(+), 11 deletions(-) diff --git a/ChangeLog b/ChangeLog index de06373b..e8c5f710 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,20 @@ +Changes between v7.1 and v7.2: +------------------------------ + +Benno Schulenberg (11): + bindings: let ^/ toggle between the 'search' and 'gotoline' menus + bump version numbers and add a news item for the 7.2 release + copyright: update the years for the FSF + docs: give ^K and ^U some useful function in the alternative bindings + docs: put the binding of ^Y after its unbinding, for it to be effective + gnulib: update to its current upstream state + input: disallow bracketed pastes when in view mode + syntax: html: colorize specially the other two emphasizing tags too + tweaks: avoid warnings when compiling with -Wpedantic + tweaks: rewrap an old news item + tweaks: separate a special thanks from the preceding ones + + Changes between v7.0 and v7.1: ------------------------------ diff --git a/NEWS b/NEWS index 5713bb58..e02b47c6 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,6 @@ +2023.01.18 - GNU nano 7.2 "Boer doe mij 't hekke lös!" +• is prevented from pasting in view mode. + 2022.12.14 - GNU nano 7.1 "And the devices shall be made of wood" • When --autoindent and --breaklonglines are combined, pressing at a specific position no longer eats characters. diff --git a/README b/README index e2d3d2c9..b746045a 100644 --- a/README +++ b/README @@ -15,7 +15,7 @@ Appearance In rough ASCII graphics, this is what nano's screen looks like: ____________________________________________________________________ - | GNU nano 7.1 filename Modified | + | GNU nano 7.2 filename Modified | -------------------------------------------------------------------- | This is the text window, displaying the contents of a 'buffer', | | the contents of the file you are editing. | diff --git a/configure.ac b/configure.ac index d549c06b..b08dade5 100644 --- 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], [7.1], [nano-devel@gnu.org], [nano]) +AC_INIT([GNU nano], [7.2], [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 index 0c065432..3e8a9dbd 100644 --- a/doc/faq.html +++ b/doc/faq.html @@ -92,7 +92,7 @@

1.3. Why the name change from TIP?

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).

1.4. What is the current version of nano?

-

The current version of nano should be 7.1. Of course, you should always check the nano homepage to see what the latest and greatest version is.

+

The current version of nano should be 7.2. Of course, you should always check the nano homepage to see what the latest and greatest version is.

1.5. I want to read the man page without having to download the program!

Jeez, demanding, aren't we? Okay, look here.


diff --git a/doc/nano.1 b/doc/nano.1 index 3287de1e..1eb19c5f 100644 --- a/doc/nano.1 +++ b/doc/nano.1 @@ -16,7 +16,7 @@ .\" Documentation License along with this program. If not, see .\" . .\" -.TH NANO 1 "version 7.1" "December 2022" +.TH NANO 1 "version 7.2" "January 2023" .SH NAME nano \- Nano's ANOther editor, inspired by Pico diff --git a/doc/nano.texi b/doc/nano.texi index ea1ccd65..f5817d6a 100644 --- a/doc/nano.texi +++ b/doc/nano.texi @@ -13,8 +13,8 @@ The complete manual for the GNU nano text editor. @smallbook @set EDITION 0.7 -@set VERSION 7.1 -@set UPDATED December 2022 +@set VERSION 7.2 +@set UPDATED January 2023 @dircategory Editors @direntry @@ -29,7 +29,7 @@ The complete manual for the GNU nano text editor. @title GNU @command{nano} @subtitle a small and friendly text editor -@subtitle version 7.1 +@subtitle version 7.2 @author Chris Allegretta @@ -79,7 +79,7 @@ For suggesting improvements: @email{nano-devel@@gnu.org} @node Top @top -This manual documents GNU @command{nano}, version 7.1. +This manual documents GNU @command{nano}, version 7.2. @menu * Introduction:: diff --git a/doc/nanorc.5 b/doc/nanorc.5 index 7b1b5f84..4416b7dd 100644 --- a/doc/nanorc.5 +++ b/doc/nanorc.5 @@ -16,7 +16,7 @@ .\" Documentation License along with this program. If not, see .\" . .\" -.TH NANORC 5 "version 7.1" "December 2022" +.TH NANORC 5 "version 7.2" "January 2023" .SH NAME nanorc \- GNU nano's configuration file diff --git a/doc/rnano.1 b/doc/rnano.1 index d8c809b3..27762bc6 100644 --- a/doc/rnano.1 +++ b/doc/rnano.1 @@ -16,7 +16,7 @@ .\" Documentation License along with this program. If not, see .\" . .\" -.TH RNANO 1 "version 7.1" "December 2022" +.TH RNANO 1 "version 7.2" "January 2023" .SH NAME rnano \- a restricted nano diff --git a/roll-a-release.sh b/roll-a-release.sh index a0387254..59b9fbb5 100755 --- a/roll-a-release.sh +++ b/roll-a-release.sh @@ -1,6 +1,6 @@ #!/bin/bash -VERSION="7.1" +VERSION="7.2" ./configure -C --enable-tiny && make && ./configure -C &&