From 58e58f0b30daac769a8af8eace0f43daa4a748f7 Mon Sep 17 00:00:00 2001 From: github-actions Date: Sat, 24 Jun 2023 19:16:46 +0000 Subject: [PATCH] Update for release [skip ci] --- CHANGELOG.adoc | 2 ++ doc/vim-iced.txt | 2 +- ftplugin/clojure.vim | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index af70e3fb..78de22be 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.14.3240 (2023-06-24) // {{{ === Fixed * https://github.com/liquidz/vim-iced/issues/461[#461]: Fixed `IcedSourceShow` and `IcedSourcePopupShow` to work correctly on Neovim. diff --git a/doc/vim-iced.txt b/doc/vim-iced.txt index 2efd2340..a88fc051 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.3233 +Version: 3.14.3240 Author : Masashi Iizuka License: MIT LICENSE diff --git a/ftplugin/clojure.vim b/ftplugin/clojure.vim index e716ce54..f5f36e95 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 = 3233 +let s:iced_patch = 3240 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')