From: Arun Prakash Jana <engineerarun@gmail.com>
Date: Wed, 4 Oct 2017 18:26:59 +0000 (+0530)
Subject: Prepare for release v1.5
X-Git-Tag: v1.5~1
X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=dcf8fbf78bc995a40b5bb05d5583ad209581c9f5;p=nnn.git

Prepare for release v1.5
---

diff --git a/CHANGELOG b/CHANGELOG
index 0572b1f3..df5973af 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,15 @@
+nnn v1.5
+2017-10-05
+
+What's in?
+- File and directory creation (`n`)
+- Env variable `NNN_NOWAIT` to unblock nnn when opening files (DE-specific)
+- Show current entry number in status bar
+- Support archive listing (`F`) and extraction (`Ctrl-X`) [using `atool`]
+- Show correct file size on i386 for large files (> 2GB)
+
+-------------------------------------------------------------------------------
+
 nnn v1.4
 2017-09-04
 
diff --git a/Makefile b/Makefile
index 6103610d..3bce3247 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 1.4
+VERSION = 1.5
 
 PREFIX ?= /usr/local
 MANPREFIX = $(PREFIX)/share/man
diff --git a/nnn.1 b/nnn.1
index 26ec8854..01680d6c 100644
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Sep 04, 2017
+.Dd Oct 05, 2017
 .Dt NNN 1
 .Os
 .Sh NAME
diff --git a/nnn.c b/nnn.c
index cbb28043..e630ebab 100644
--- a/nnn.c
+++ b/nnn.c
@@ -135,7 +135,7 @@ disabledbg()
 #endif /* DEBUGMODE */
 
 /* Macro definitions */
-#define VERSION "1.4"
+#define VERSION "1.5"
 #define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
 #define LEN(x) (sizeof(x) / sizeof(*(x)))
 #undef MIN
diff --git a/scripts/make_native/Makefile.native b/scripts/make_native/Makefile.native
index 44f1932d..b0945f7d 100644
--- a/scripts/make_native/Makefile.native
+++ b/scripts/make_native/Makefile.native
@@ -4,7 +4,7 @@
 #
 # NOTE: This file is used in Travis CI for stricter test builds
 
-VERSION = 1.4
+VERSION = 1.5
 
 PREFIX ?= /usr/local
 MANPREFIX = $(PREFIX)/share/man