Skip to content
This repository was archived by the owner on Feb 23, 2025. It is now read-only.

Commit 0ba1525

Browse files
author
github-actions
committedJun 15, 2024
Update for release [skip ci]
1 parent 8bef24a commit 0ba1525

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed
 

‎CHANGELOG.adoc

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
All notable changes to this project will be documented in this file. This change log follows the conventions of http://keepachangelog.com/[keepachangelog.com].
22

33
== Unreleased (dev)
4+
5+
== 4.0.3295 (2024-06-15)
46
// {{{
57
=== Changed
68
* (Breaking) Removed support for nREPL's sideloader functionality.

‎doc/vim-iced.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*vim-iced.txt* Clojure interactive development environment for Vim8/Neovim
22

3-
Version: 3.15.3283
3+
Version: 4.0.3295
44
Author : Masashi Iizuka <liquidz.uo+vim@gmail.com>
55
License: MIT LICENSE
66

‎ftplugin/clojure.vim

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ if exists('g:loaded_vim_iced')
33
endif
44
let g:loaded_vim_iced = 1
55

6-
let s:iced_major = 3
7-
let s:iced_minor = 15
8-
let s:iced_patch = 3283
6+
let s:iced_major = 4
7+
let s:iced_minor = 0
8+
let s:iced_patch = 3295
99
let g:vim_iced_version = s:iced_major * 1000000 + s:iced_minor * 10000 + s:iced_patch
1010

1111
let g:vim_iced_home = expand('<sfile>:p:h:h')

0 commit comments

Comments
 (0)
This repository has been archived.