From: Arun Prakash Jana <engineerarun@gmail.com>
Date: Wed, 26 Jul 2017 04:01:03 +0000 (+0530)
Subject: Prepare for release v1.3
X-Git-Tag: v1.3
X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=df3efcfb505ec508d373a2f991e49c39196dd35c;p=nnn.git

Prepare for release v1.3
---

diff --git a/CHANGELOG b/CHANGELOG
index a0f8e0e0..af956483 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,14 @@
+nnn v1.3
+2017-07-26
+
+What's in?
+- Show directories in custom color (default: enabled in blue)
+- Option `-e` to use exiftool instead of mediainfo
+- Fixed #34: nftw(3) broken with too many open descriptors
+- More concise help screen
+
+-------------------------------------------------------------------------------
+
 nnn v1.2
 2017-06-29
 
diff --git a/Makefile b/Makefile
index 5e87f4fe..6d477e20 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 1.2
+VERSION = 1.3
 
 PREFIX ?= /usr/local
 MANPREFIX = $(PREFIX)/share/man
diff --git a/Makefile.native b/Makefile.native
index ab832de6..4eac41d1 100644
--- a/Makefile.native
+++ b/Makefile.native
@@ -1,4 +1,4 @@
-VERSION = 1.2
+VERSION = 1.3
 
 PREFIX ?= /usr/local
 MANPREFIX = $(PREFIX)/share/man
diff --git a/nnn.1 b/nnn.1
index 4fde8e4f..562041d7 100644
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Jun 29, 2017
+.Dd Jul 26, 2017
 .Dt NNN 1
 .Os
 .Sh NAME
diff --git a/nnn.c b/nnn.c
index a0f5c3aa..195f095e 100644
--- a/nnn.c
+++ b/nnn.c
@@ -96,7 +96,7 @@ disabledbg()
 #endif /* DEBUGMODE */
 
 /* Macro definitions */
-#define VERSION "1.2"
+#define VERSION "1.3"
 #define LEN(x) (sizeof(x) / sizeof(*(x)))
 #undef MIN
 #define MIN(x, y) ((x) < (y) ? (x) : (y))