diff --git a/CHANGELOG.md b/CHANGELOG.md
index f8aba59..75c53c9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,43 @@
+# 0.15.0
+
+ [](https://github.com/arcticicestudio/nord-vim/projects/21) [](https://github.com/arcticicestudio/nord-vim/milestone/17)
+
+## Features
+
+### Syntax
+
+**Extended support for TypeScript and TSX** — #208 (⊶ 1bd44ade) by [@iamdidev][gh-user-iamdidev]
+↠ Added extended support for [TypeScript][] and [TSX][ts-docs-jsx] through the [yats.vim][herringtonharkholme/yats.vim] plugin.
+This provides, among many other good changes, better highlighting for syntax elements like [decorators][ts-docs-decorators], more granular separation of different language elements within a single code line as well as highlighting for…
+
+
…interfaces with bold font style, typing characters and types.
+
+
+…global methods like setTimeout with italic font style.
+
+
+…regular expressions with nord13 instead of the normal color for quoted strings.
+
+
+…global elements like Error, JSON and console.
+
+
+…brackets of types as structural elements.
+
+
+…TSX/JSX and HTML with a consistent appearance.
+
+
+### UI
+
+**Support for vim-clap** — #178 (⊶ 7a52f66c) by [@meck][gh-user-meck] and [@ikalnytskyi][gh-user-ikalnytskyi]
+↠ Added basic support for [vim-clap][liuchengxu/vim-clap], a modern and performant generic finder and dispatcher for Vim and NeoVim.
+
+
+
# 0.14.0
 [](https://github.com/arcticicestudio/nord-vim/projects/20) [](https://github.com/arcticicestudio/nord-vim/milestone/16)
@@ -836,3 +873,13 @@ Detailed information about features, supported plugins/languages and install ins
[gh-user-xulongwu4]: https://github.com/xulongwu4
[neovim/nvim-lsp]: https://github.com/neovim/nvim-lsp
[yggdroot/leaderf]: https://github.com/Yggdroot/LeaderF
+
+
+
+[gh-user-iamdidev]: https://github.com/iamdidev
+[gh-user-ikalnytskyi]: https://github.com/ikalnytskyi
+[herringtonharkholme/yats.vim]: https://github.com/HerringtonDarkholme/yats.vim
+[liuchengxu/vim-clap]: https://github.com/liuchengxu/vim-clap
+[ts-docs-decorators]: https://www.typescriptlang.org/docs/handbook/decorators.html
+[ts-docs-jsx]: https://www.typescriptlang.org/docs/handbook/jsx.html
+[typescript]: https://www.typescriptlang.org
diff --git a/autoload/airline/themes/nord.vim b/autoload/airline/themes/nord.vim
index 6cbde1f..38d3add 100755
--- a/autoload/airline/themes/nord.vim
+++ b/autoload/airline/themes/nord.vim
@@ -5,7 +5,7 @@
" Repository: https://github.com/arcticicestudio/nord-vim
" License: MIT
-let s:nord_vim_version="0.14.0"
+let s:nord_vim_version="0.15.0"
let g:airline#themes#nord#palette = {}
let s:nord0_gui = "#2E3440"
diff --git a/autoload/lightline/colorscheme/nord.vim b/autoload/lightline/colorscheme/nord.vim
index 201f16d..fceb189 100755
--- a/autoload/lightline/colorscheme/nord.vim
+++ b/autoload/lightline/colorscheme/nord.vim
@@ -5,7 +5,7 @@
" Repository: https://github.com/arcticicestudio/nord-vim
" License: MIT
-let s:nord_vim_version="0.14.0"
+let s:nord_vim_version="0.15.0"
let s:p = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}, 'tabline': {}}
let s:nord0 = ["#2E3440", "NONE"]
diff --git a/colors/nord.vim b/colors/nord.vim
index 8a52920..6b00afb 100755
--- a/colors/nord.vim
+++ b/colors/nord.vim
@@ -13,7 +13,7 @@ if version > 580
endif
let g:colors_name = "nord"
-let s:nord_vim_version="0.14.0"
+let s:nord_vim_version="0.15.0"
set background=dark
let s:nord0_gui = "#2E3440"