diff --git a/CHANGELOG b/CHANGELOG
index c532689eb..e9b577108 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,33 @@
+nnn v2.2
+2019-01-01
+
+What's in?
+- (neo)vim plugin [nnn.vim](github.com/mcchrish/nnn.vim)
+- macOS fixes
+ - Fix issues with file copy, move, remove
+ - Handle Del in rename prompt
+ - Pass correct `file` option to identify mime
+- Support selection across directories and contexts
+- Offer option `force` before file remove
+- Keys Tab, ^I to go to next active context
+- Per-context directory color specified by `$NNN_CONTEXT_COLORS`
+ - Option `-c` is removed
+- Option `-C` to disable colors
+- Choose script to run from a script directory
+- Run a command (or launch an application)
+- Run file as executable C
+- Documentation on lftp integration for remote file transfers
+- Support a _combined_ set of arguments to `$EDITOR`, `$PAGER` and `$SHELL`
+- Handle > 2 GB files on 32-bit ARM
+- Env var `$DISABLE_FILE_OPEN_ON_NAV` to disable file open on Right or l
+- `NUL`-terminated file paths in selection list instead of `LF`
+- Better support for Termux and Cygwin environments
+- Remapped keys
+ - ^I - go to next active context
+ - ^T - toggle _navigate-as-you-type_
+
+-------------------------------------------------------------------------------
+
nnn v2.1
2018-11-23
diff --git a/LICENSE b/LICENSE
index e933c4524..65bba6071 100644
--- a/LICENSE
+++ b/LICENSE
@@ -2,7 +2,7 @@ BSD 2-Clause License
Copyright (c) 2014-2016, Lazaros Koromilas
Copyright (c) 2014-2016, Dimitris Papastamos
-Copyright (c) 2016-2018, Arun Prakash Jana
+Copyright (c) 2016-2019, Arun Prakash Jana
All rights reserved.
Redistribution and use in source and binary forms, with or without
diff --git a/Makefile b/Makefile
index e5b645e08..c975dcebd 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION = 2.1
+VERSION = 2.2
PREFIX ?= /usr/local
MANPREFIX ?= $(PREFIX)/share/man
diff --git a/README.md b/README.md
index a43f52aff..aba235c6c 100644
--- a/README.md
+++ b/README.md
@@ -557,4 +557,4 @@ To open files with this setting, press Enter.
1. Copyright © 2014-2016 Lazaros Koromilas
2. Copyright © 2014-2016 Dimitris Papastamos
-3. Copyright © 2016-2018 [Arun Prakash Jana](https://github.com/jarun)
+3. Copyright © 2016-2019 [Arun Prakash Jana](https://github.com/jarun)
diff --git a/nnn.1 b/nnn.1
index e3c457586..62bb16255 100644
--- a/nnn.1
+++ b/nnn.1
@@ -1,4 +1,4 @@
-.Dd Nov 23, 2018
+.Dd Jan 01, 2019
.Dt NNN 1
.Os
.Sh NAME
diff --git a/packagecore.yaml b/packagecore.yaml
index 4f201711b..ebf123686 100644
--- a/packagecore.yaml
+++ b/packagecore.yaml
@@ -88,6 +88,14 @@ packages:
- ncurses-devel
deps:
- ncurses
+ fedora29:
+ builddeps:
+ - make
+ - gcc
+ - pkg-config
+ - ncurses-devel
+ deps:
+ - ncurses
# opensuse42.3:
# builddeps:
# - make
diff --git a/scripts/natool/natool b/scripts/natool/natool
index dd08d5488..65e0be51f 100755
--- a/scripts/natool/natool
+++ b/scripts/natool/natool
@@ -17,7 +17,7 @@
# Author: Arun Prakash Jana
# Email: engineerarun@gmail.com
# Homepage: https://github.com/jarun/nnn
-# Copyright © 2018 Arun Prakash Jana
+# Copyright © 2019 Arun Prakash Jana
# #############################################################################
import sys
diff --git a/scripts/nlay/nlay b/scripts/nlay/nlay
index 26e823fae..b3d587fbe 100755
--- a/scripts/nlay/nlay
+++ b/scripts/nlay/nlay
@@ -28,7 +28,7 @@
# Author: Arun Prakash Jana
# Email: engineerarun@gmail.com
# Homepage: https://github.com/jarun/nnn
-# Copyright © 2016-2018 Arun Prakash Jana
+# Copyright © 2016-2019 Arun Prakash Jana
# #############################################################################
diff --git a/src/nnn.c b/src/nnn.c
index 400ecc992..c018c46e9 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2014-2016, Lazaros Koromilas
* Copyright (c) 2014-2016, Dimitris Papastamos
- * Copyright (c) 2016-2018, Arun Prakash Jana
+ * Copyright (c) 2016-2019, Arun Prakash Jana
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -156,7 +156,7 @@ disabledbg()
#endif /* DEBUGMODE */
/* Macro definitions */
-#define VERSION "2.1"
+#define VERSION "2.2"
#define GENERAL_INFO "License: BSD 2-Clause\nWebpage: https://github.com/jarun/nnn"
#define LEN(x) (sizeof(x) / sizeof(*(x)))
diff --git a/src/nnn.h b/src/nnn.h
index 2e1a5a08c..e52986b62 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -3,7 +3,7 @@
*
* Copyright (c) 2014-2016, Lazaros Koromilas
* Copyright (c) 2014-2016, Dimitris Papastamos
- * Copyright (c) 2016-2018, Arun Prakash Jana
+ * Copyright (c) 2016-2019, Arun Prakash Jana
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without