diff --git a/ChangeLog b/ChangeLog index 16282762..22691975 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,32 @@ +Changes between v4.1 and v4.2: +------------------------------ + +Benno Schulenberg (23): + build: be more specific and avoid committing accidentally changed files + bump version numbers and add a news item for the 4.2 release + docs: put the 'set guidestripe' option into its alphabetical position + options: make --breaklonglines work also when --ignorercfiles is used + speller: do not crash by trying to free something that cannot be freed + tweaks: adjust a few comments and some indentation + tweaks: condense and improve a handful of comments + tweaks: declare a function as const and let its allocated string leak + tweaks: drop an unneeded saving and restoring of a variable + tweaks: elide an unneeded intermediate variable + tweaks: elide an unneeded parameter, as the function already assumes it + tweaks: elide an unneeded variable + tweaks: exclude a bit more code from a single-buffer build + tweaks: remove an unneeded condition + tweaks: remove a redundant, enclosed #ifdef + tweaks: rename a function, to be distinct and fitting + tweaks: rename another function, to be distinct and fitting + tweaks: rename a variable, for a little more meaning + tweaks: rename a variable, to distinguish it from a browser function + wrapping: add a missing space only when the remainder will be prepended + wrapping: compute the width of a succeeding line in the correct manner + wrapping: improve the persistence of the prepending behavior + wrapping: trim any trailing blanks when cursor goes to next line + + Changes between v4.0 and v4.1: ------------------------------ diff --git a/NEWS b/NEWS index 0fa7036c..98328077 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +2019.04.24 - GNU nano 4.2 "Tax the rich, pay the teachers" +• The integrated spell checker does not crash when 'spell' is missing. +• Option --breaklonglines works also when --ignorercfiles is used. +• Automatic hard-wrapping is more persistent in pushing words to the + same overflow line. + 2019.04.15 - GNU nano 4.1 "Qué corchos será eso?" • By default, a newline character is again automatically added at the end of a buffer, to produce valid POSIX text files by default, but @@ -27,7 +33,7 @@ • Option --guidestripe= draws a vertical bar at the given column. • Option --fill= no longer turns on automatic hard-wrapping. • When a line continues offscreen, it now ends with a highlighted ">". -• The halfs of a split two-column character are shown as "[" and "]". +• The halves of a split two-column character are shown as "[" and "]". • A line now scrolls horizontally one column earlier. • The bindable functions 'cutwordleft' and 'cutwordright' were renamed to 'chopwordleft' and 'chopwordright' as they don't use the cutbuffer. diff --git a/configure.ac b/configure.ac index 3ec7b8c9..d4d955b5 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], [4.1], [nano-devel@gnu.org], [nano]) +AC_INIT([GNU nano], [4.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 bada0b86..c7fc6ff8 100644 --- a/doc/faq.html +++ b/doc/faq.html @@ -85,7 +85,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 4.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 4.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 7f61c8a7..07209317 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 4.1" "April 2019" +.TH NANO 1 "version 4.2" "April 2019" .SH NAME nano \- Nano's ANOther editor, inspired by Pico diff --git a/doc/nano.texi b/doc/nano.texi index c1cb34e9..d20d0b2c 100644 --- a/doc/nano.texi +++ b/doc/nano.texi @@ -8,7 +8,7 @@ @smallbook @set EDITION 0.5 -@set VERSION 4.1 +@set VERSION 4.2 @set UPDATED April 2019 @dircategory Editors @@ -23,7 +23,7 @@ @titlepage @title GNU @command{nano} @subtitle a small and friendly text editor -@subtitle version 4.1 +@subtitle version 4.2 @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 4.1. +This manual documents the GNU @command{nano} editor, version 4.2. @menu * Introduction:: diff --git a/doc/nanorc.5 b/doc/nanorc.5 index 2941caab..cfc402b1 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 4.1" "April 2019" +.TH NANORC 5 "version 4.2" "April 2019" .SH NAME nanorc \- GNU nano's configuration file diff --git a/doc/rnano.1 b/doc/rnano.1 index d6765f8d..f3a850be 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 4.1" "April 2019" +.TH RNANO 1 "version 4.2" "April 2019" .SH NAME rnano \- a restricted nano diff --git a/roll-a-release.sh b/roll-a-release.sh index d3b067ab..11caa203 100755 --- a/roll-a-release.sh +++ b/roll-a-release.sh @@ -1,6 +1,6 @@ #!/bin/bash -VERSION="4.1" +VERSION="4.2" ./configure -C --enable-tiny && make && ./configure -C &&