-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
build.edn
23 lines (23 loc) · 944 Bytes
/
build.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{:lib com.github.liquidz/vim-iced
:version "4.0.{{git/commit-count}}"
:documents [{:file "doc/vim-iced.txt"
:match "^Version: "
:action :replace
:text "Version: {{version}}"}
{:file "CHANGELOG.adoc"
:match "Unreleased"
:action :append-after
:text "\n== {{version}} ({{now/yyyy}}-{{now/mm}}-{{now/dd}})"}
{:file "ftplugin/clojure.vim"
:match "s:iced_major ="
:action :replace
:text "let s:iced_major = {{version/major}}"}
{:file "ftplugin/clojure.vim"
:match "s:iced_minor ="
:action :replace
:text "let s:iced_minor = {{version/minor}}"}
{:file "ftplugin/clojure.vim"
:match "s:iced_patch ="
:action :replace
:text "let s:iced_patch = {{version/patch}}"}]
:github-actions? true}