Skip to content

Commit

Permalink
chore: release 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcuts committed Dec 10, 2022
1 parent 99c731b commit 1da5270
Show file tree
Hide file tree
Showing 4 changed files with 113 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .chglog/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
style: github
template: template.md
info:
title: CHANGELOG
repository_url: https://github.com/shortcuts/no-neck-pain.nvim
options:
commits:
filters:
Type:
- feat
- fix
- refactor
- chore
- docs
commit_groups:
title_order:
- feat
- fix
- refactor
- chore
- docs
header:
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$"
pattern_maps:
- Type
- Scope
- Subject
notes:
keywords:
- BREAKING CHANGE
42 changes: 42 additions & 0 deletions .chglog/template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{{ range .Versions }}
<a name="{{ .Tag.Name }}"></a>
## {{ if .Tag.Previous }}[{{ .Tag.Name }}]{{ else }}{{ .Tag.Name }}{{ end }} - {{ datetime "2006-01-02" .Tag.Date }}
{{ range .CommitGroups -}}
### {{ .Title }}
{{ range .Commits -}}
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
{{ end }}
{{ end -}}

{{- if .RevertCommits -}}
### Reverts
{{ range .RevertCommits -}}
- {{ .Revert.Header }}
{{ end }}
{{ end -}}

{{- if .MergeCommits -}}
### Pull Requests
{{ range .MergeCommits -}}
- {{ .Header }}
{{ end }}
{{ end -}}

{{- if .NoteGroups -}}
{{ range .NoteGroups -}}
### {{ .Title }}
{{ range .Notes }}
{{ .Body }}
{{ end }}
{{ end -}}
{{ end -}}
{{ end -}}

{{- if .Versions }}
[Unreleased]: {{ .Info.RepositoryURL }}/compare/{{ $latest := index .Versions 0 }}{{ $latest.Tag.Name }}...HEAD
{{ range .Versions -}}
{{ if .Tag.Previous -}}
[{{ .Tag.Name }}]: {{ $.Info.RepositoryURL }}/compare/{{ .Tag.Previous.Name }}...{{ .Tag.Name }}
{{ end -}}
{{ end -}}
{{ end -}}
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@

<a name="0.0.1"></a>
## 0.0.1 - 2022-12-10
### Chore
- better snippets for dashboard support ([#24](https://github.com/shortcuts/no-neck-pain.nvim/issues/24))
- update README.md ([#9](https://github.com/shortcuts/no-neck-pain.nvim/issues/9))
- add submodules
- remove submodule
- github action
- add deps
- remove deps
- README

### Docs
- add wiki ([#25](https://github.com/shortcuts/no-neck-pain.nvim/issues/25))

### Feat
- disable NNP when killing side buffers ([#16](https://github.com/shortcuts/no-neck-pain.nvim/issues/16))
- left buffer only option ([#13](https://github.com/shortcuts/no-neck-pain.nvim/issues/13))
- add tests ([#4](https://github.com/shortcuts/no-neck-pain.nvim/issues/4))
- split screen support ([#3](https://github.com/shortcuts/no-neck-pain.nvim/issues/3))
- enable on WinEnter (closes [#1](https://github.com/shortcuts/no-neck-pain.nvim/issues/1))
- init no-neck-pain.nvim

### Fix
- NNP disabling not triggering ([#21](https://github.com/shortcuts/no-neck-pain.nvim/issues/21))
- condition for leftPaddingOnly
- prevent float window to kill side buffers ([#12](https://github.com/shortcuts/no-neck-pain.nvim/issues/12))
- unwanted `init` toggle ([#8](https://github.com/shortcuts/no-neck-pain.nvim/issues/8))
- prevent infinite config reset ([#7](https://github.com/shortcuts/no-neck-pain.nvim/issues/7))
- cleanup and more tests ([#6](https://github.com/shortcuts/no-neck-pain.nvim/issues/6))
- tests ([#5](https://github.com/shortcuts/no-neck-pain.nvim/issues/5))
- better split support
- remove `enableOnWinEnter`
- some padding wrongly toggling


[Unreleased]: https://github.com/shortcuts/no-neck-pain.nvim/compare/0.0.1...HEAD
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ documentation:

lint:
stylua .

changelog:
git-chglog -o CHANGELOG.md -no-case

0 comments on commit 1da5270

Please sign in to comment.