diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 61902954..2baba676 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -1,6 +1,8 @@ All notable changes to this project will be documented in this file. This change log follows the conventions of http://keepachangelog.com/[keepachangelog.com]. == Unreleased (dev) + +== 3.15.3283 (2024-02-29) // {{{ === Changed * Bumped cider-nrepl to 0.45.0. diff --git a/doc/vim-iced.txt b/doc/vim-iced.txt index 7eea3b55..1641a5d3 100644 --- a/doc/vim-iced.txt +++ b/doc/vim-iced.txt @@ -1,6 +1,6 @@ *vim-iced.txt* Clojure interactive development environment for Vim8/Neovim -Version: 3.15.3271 +Version: 3.15.3283 Author : Masashi Iizuka License: MIT LICENSE diff --git a/ftplugin/clojure.vim b/ftplugin/clojure.vim index 046617bf..5b289da8 100644 --- a/ftplugin/clojure.vim +++ b/ftplugin/clojure.vim @@ -5,7 +5,7 @@ let g:loaded_vim_iced = 1 let s:iced_major = 3 let s:iced_minor = 15 -let s:iced_patch = 3271 +let s:iced_patch = 3283 let g:vim_iced_version = s:iced_major * 1000000 + s:iced_minor * 10000 + s:iced_patch let g:vim_iced_home = expand(':p:h:h')