Skip to content

Commit

Permalink
bump version numbers and add a news item for the 7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Benno Schulenberg committed Dec 14, 2022
1 parent 7f77269 commit 3791ed8
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 11 deletions.
14 changes: 14 additions & 0 deletions ChangeLog
@@ -1,3 +1,17 @@
Changes between v7.0 and v7.1:
------------------------------

Benno Schulenberg (8):
build: fix compilation when configured with --disable-comment
bump version numbers and add a news item for the 7.1 release
copyright: update the last year for significantly changed files
docs: say thanks to the Albanian translator
rcfile: report an error when an included file does not exist
text: upon Enter, eat only lefthand blanks, not any other characters
tweaks: avoid passing NULL to access()
tweaks: wrap overlong lines in the Tcl syntax, to make them manageable


Changes between v6.4 and v7.0:
------------------------------

Expand Down
4 changes: 4 additions & 0 deletions NEWS
@@ -1,3 +1,7 @@
2022.12.14 - GNU nano 7.1 "And the devices shall be made of wood"
• When --autoindent and --breaklonglines are combined, pressing
<Enter> at a specific position no longer eats characters.

2022.11.15 - GNU nano 7.0 "Una existencia simple bajo el sol"
• String binds may contain bindable function names between braces.
For example, to move the current line down to after the next one:
Expand Down
2 changes: 1 addition & 1 deletion README
Expand Up @@ -15,7 +15,7 @@ Appearance
In rough ASCII graphics, this is what nano's screen looks like:

____________________________________________________________________
| GNU nano 7.0 filename Modified |
| GNU nano 7.1 filename Modified |
--------------------------------------------------------------------
| This is the text window, displaying the contents of a 'buffer', |
| the contents of the file you are editing. |
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -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.0], [nano-devel@gnu.org], [nano])
AC_INIT([GNU nano], [7.1], [nano-devel@gnu.org], [nano])
AC_CONFIG_SRCDIR([src/nano.c])
AC_CANONICAL_HOST
AM_INIT_AUTOMAKE([1.14])
Expand Down
2 changes: 1 addition & 1 deletion doc/faq.html
Expand Up @@ -92,7 +92,7 @@ <h3><a name="1.2"></a>1.2. What is the history behind nano?</h3>
<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 &quot;establishes a full duplex terminal connection to a remote host&quot;, 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>7.0</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>7.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%">
Expand Down
2 changes: 1 addition & 1 deletion doc/nano.1
Expand Up @@ -16,7 +16,7 @@
.\" Documentation License along with this program. If not, see
.\" <https://www.gnu.org/licenses/>.
.\"
.TH NANO 1 "version 7.0" "November 2022"
.TH NANO 1 "version 7.1" "December 2022"

.SH NAME
nano \- Nano's ANOther editor, inspired by Pico
Expand Down
8 changes: 4 additions & 4 deletions doc/nano.texi
Expand Up @@ -13,8 +13,8 @@ The complete manual for the GNU nano text editor.

@smallbook
@set EDITION 0.7
@set VERSION 7.0
@set UPDATED November 2022
@set VERSION 7.1
@set UPDATED December 2022

@dircategory Editors
@direntry
Expand All @@ -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.0
@subtitle version 7.1

@author Chris Allegretta

Expand Down Expand Up @@ -79,7 +79,7 @@ For suggesting improvements: @email{nano-devel@@gnu.org}
@node Top
@top

This manual documents GNU @command{nano}, version 7.0.
This manual documents GNU @command{nano}, version 7.1.

@menu
* Introduction::
Expand Down
2 changes: 1 addition & 1 deletion doc/nanorc.5
Expand Up @@ -16,7 +16,7 @@
.\" Documentation License along with this program. If not, see
.\" <https://www.gnu.org/licenses/>.
.\"
.TH NANORC 5 "version 7.0" "November 2022"
.TH NANORC 5 "version 7.1" "December 2022"

.SH NAME
nanorc \- GNU nano's configuration file
Expand Down
2 changes: 1 addition & 1 deletion doc/rnano.1
Expand Up @@ -16,7 +16,7 @@
.\" Documentation License along with this program. If not, see
.\" <https://www.gnu.org/licenses/>.
.\"
.TH RNANO 1 "version 7.0" "November 2022"
.TH RNANO 1 "version 7.1" "December 2022"

.SH NAME
rnano \- a restricted nano
Expand Down
2 changes: 1 addition & 1 deletion roll-a-release.sh
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION="7.0"
VERSION="7.1"

./configure -C --enable-tiny && make && ./configure -C &&

Expand Down

0 comments on commit 3791ed8

Please sign in to comment.