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

Commit 16ffb08

Browse files
authored
Merge pull request #456 from liquidz/next_release
Next release
2 parents ae5b751 + 4095e7c commit 16ffb08

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,8 @@ jobs:
3939
- uses: actions/checkout@v3
4040
- run: git pull origin main
4141

42-
- uses: actions/create-release@v1
43-
env:
44-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
42+
- uses: ncipollo/release-action@v1
4543
with:
46-
tag_name: ${{ needs.change-version.outputs.version }}
47-
release_name: ${{ needs.change-version.outputs.version }}
48-
body: released
49-
draft: false
50-
prerelease: false
44+
tag: ${{ needs.change-version.outputs.version }}
45+
skipIfReleaseExists: true
46+
generateReleaseNotes: true

CHANGELOG.adoc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
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+
=== Changed
6+
* Bumped build.edn to 0.9.203.
7+
* Updateed release workflow to use https://github.com/ncipollo/release-action[ncipollo/release-action].
8+
9+
=== Fixed
10+
* Fixed `s:default_key_mappings` not to work twice.
11+
// }}}
412

513
== 3.14.3207 (2023-02-03)
614
// {{{

deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@
3939
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "RELEASE"}
4040
org.slf4j/slf4j-nop {:mvn/version "RELEASE"}}
4141
:main-opts ["-m" "antq.core"]}
42-
:build {:deps {com.github.liquidz/build.edn {:git/tag "0.9.188" :git/sha "d2d25b0"}}
42+
:build {:deps {com.github.liquidz/build.edn {:mvn/version "0.9.203"}}
4343
:ns-default build-edn.main}
4444
:dev {}}}

ftplugin/clojure.vim

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,11 @@ function! s:define_mapping(map_type, default_keys, plug_name) abort
392392
endfunction
393393

394394
function! s:default_key_mappings() abort
395+
if exists('b:iced_default_key_mappings_applied')
396+
return
397+
endif
398+
let b:iced_default_key_mappings_applied = v:true
399+
395400
call s:define_mapping('nmap', "<Leader>'", '<Plug>(iced_connect)')
396401

397402
"" Evaluating (<Leader>e)

0 commit comments

Comments
 (0)