diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 3ea103f3..4ee82264 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -2,6 +2,8 @@ All notable changes to this project will be documented in this file. This change == Unreleased (dev) +== 3.14.3255 (2023-09-29) + // {{{ === Fixed * Fixed `IcedInstantConnect` to work correctly with the latest babashka. diff --git a/doc/vim-iced.txt b/doc/vim-iced.txt index abc5f5ba..816f0127 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.14.3240 +Version: 3.14.3255 Author : Masashi Iizuka License: MIT LICENSE diff --git a/ftplugin/clojure.vim b/ftplugin/clojure.vim index f5f36e95..48d04073 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 = 14 -let s:iced_patch = 3240 +let s:iced_patch = 3255 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')