From 9eaa2b5f69e98c29b70a68c21ce7794804481a74 Mon Sep 17 00:00:00 2001 From: github-actions Date: Mon, 8 May 2023 21:01:30 +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 951ed199..c8b36a86 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.3225 (2023-05-08) // {{{ === Changed * Bumped iced-nrepl to 1.2.480. diff --git a/doc/vim-iced.txt b/doc/vim-iced.txt index ad15204b..f00bc29c 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.3213 +Version: 3.14.3225 Author : Masashi Iizuka License: MIT LICENSE diff --git a/ftplugin/clojure.vim b/ftplugin/clojure.vim index e3a216a0..73427562 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 = 3213 +let s:iced_patch = 3225 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')