Skip to content

Commit

Permalink
Merge pull request #456 from liquidz/next_release
Browse files Browse the repository at this point in the history
Next release
  • Loading branch information
liquidz authored Mar 4, 2023
2 parents ae5b751 + 4095e7c commit 16ffb08
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,8 @@ jobs:
- uses: actions/checkout@v3
- run: git pull origin main

- uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: ncipollo/release-action@v1
with:
tag_name: ${{ needs.change-version.outputs.version }}
release_name: ${{ needs.change-version.outputs.version }}
body: released
draft: false
prerelease: false
tag: ${{ needs.change-version.outputs.version }}
skipIfReleaseExists: true
generateReleaseNotes: true
8 changes: 8 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
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)
// {{{
=== Changed
* Bumped build.edn to 0.9.203.
* Updateed release workflow to use https://github.com/ncipollo/release-action[ncipollo/release-action].

=== Fixed
* Fixed `s:default_key_mappings` not to work twice.
// }}}

== 3.14.3207 (2023-02-03)
// {{{
Expand Down
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "RELEASE"}
org.slf4j/slf4j-nop {:mvn/version "RELEASE"}}
:main-opts ["-m" "antq.core"]}
:build {:deps {com.github.liquidz/build.edn {:git/tag "0.9.188" :git/sha "d2d25b0"}}
:build {:deps {com.github.liquidz/build.edn {:mvn/version "0.9.203"}}
:ns-default build-edn.main}
:dev {}}}
5 changes: 5 additions & 0 deletions ftplugin/clojure.vim
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,11 @@ function! s:define_mapping(map_type, default_keys, plug_name) abort
endfunction

function! s:default_key_mappings() abort
if exists('b:iced_default_key_mappings_applied')
return
endif
let b:iced_default_key_mappings_applied = v:true

call s:define_mapping('nmap', "<Leader>'", '<Plug>(iced_connect)')

"" Evaluating (<Leader>e)
Expand Down

0 comments on commit 16ffb08

Please sign in to comment.