Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
alecrabbit committed Mar 8, 2023
2 parents f2f4222 + aa2a455 commit dd195f4
Show file tree
Hide file tree
Showing 71 changed files with 365 additions and 1,638 deletions.
49 changes: 49 additions & 0 deletions .chglog/CHANGELOG.tpl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Changelog
All notable changes to this project will be documented in this file.

---

{{ if .Versions -}}
<a name="unreleased"></a>
## [Unreleased]

{{ if .Unreleased.CommitGroups -}}
{{ range .Unreleased.CommitGroups -}}
### {{ .Title }}
{{ range .Commits -}}
- {{ if .Scope }}**{{ .Scope }}:** {{ end }}{{ .Subject }}
{{ end }}
{{ end -}}
{{ end -}}
{{ end -}}

{{ 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 .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 -}}
- the format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)
27 changes: 27 additions & 0 deletions .chglog/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
style: github
template: CHANGELOG.tpl.md
info:
title: CHANGELOG
repository_url: https://github.com/alecrabbit/php-wcwidth
options:
commits:
# filters:
# Type:
# - feat
# - fix
# - perf
# - refactor
commit_groups:
# title_maps:
# feat: Features
# fix: Bug Fixes
# perf: Performance Improvements
# refactor: Code Refactoring
header:
pattern: "^(\\w*)\\:\\s(.*)$"
pattern_maps:
- Type
- Subject
notes:
keywords:
- BREAKING CHANGE
10 changes: 3 additions & 7 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
CHANGELOG.md export-ignore
.chglog/ export-ignore
composer.lock export-ignore
CONTRIBUTING.md export-ignore
doc/ export-ignore
docker/ export-ignore
docker-compose.dev.yml export-ignore
docker-compose.yml export-ignore
.dockerignore export-ignore
docker-stack.yml export-ignore
.env export-ignore
.eval/ export-ignore
.env.dist export-ignore
example/ export-ignore
.git/ export-ignore
.gitattributes export-ignore
.gitattributes.keep export-ignore
.github/ export-ignore
.gitignore export-ignore
.idea/ export-ignore
.last_init_time export-ignore
.make/ export-ignore
Makefile export-ignore
phpcs.xml export-ignore
Expand All @@ -26,5 +24,3 @@ README.md export-ignore
TERMINAL_TITLE export-ignore
tests/ export-ignore
.tools/ export-ignore
var.Makefile export-ignore
vendor/ export-ignore
2 changes: 1 addition & 1 deletion .gitattributes.keep
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
src
src/
composer.json
LICENSE
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ updates:
- package-ecosystem: composer
directory: "/"
schedule:
interval: daily
interval: weekly
time: "03:00"
open-pull-requests-limit: 10
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
/vendor
/.eval
/.phive
/.report/.build/*
vendor/
.eval/
.ready
.last_init_time
.start_time
docker-stack.yml
.phpunit.result.cache
.env

3 changes: 2 additions & 1 deletion .idea/php-console-spinner.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/php.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 0 additions & 27 deletions .make/.bin/gitattributes.sh

This file was deleted.

12 changes: 0 additions & 12 deletions .make/.bin/timed/init_time.sh

This file was deleted.

4 changes: 0 additions & 4 deletions .make/.bin/timed/start.sh

This file was deleted.

9 changes: 0 additions & 9 deletions .make/.bin/timed/stop.sh

This file was deleted.

1 change: 0 additions & 1 deletion .make/.bin/title/TERMINAL_TITLE

This file was deleted.

25 changes: 0 additions & 25 deletions .make/.bin/title/title

This file was deleted.

4 changes: 0 additions & 4 deletions .make/.core/check.all.Makefile

This file was deleted.

23 changes: 0 additions & 23 deletions .make/.core/check.docker.Makefile

This file was deleted.

17 changes: 0 additions & 17 deletions .make/.core/check.env.Makefile

This file was deleted.

26 changes: 0 additions & 26 deletions .make/.core/check.var.Makefile

This file was deleted.

14 changes: 0 additions & 14 deletions .make/.core/colors.Makefile

This file was deleted.

7 changes: 0 additions & 7 deletions .make/.core/debug.Makefile

This file was deleted.

53 changes: 0 additions & 53 deletions .make/.core/docker.Makefile

This file was deleted.

0 comments on commit dd195f4

Please sign in to comment.