From bbe085d27a68008d0ef1479457388ebf0ba5545d Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 29 Feb 2024 12:51:13 +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 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')