Skip to content

Commit

Permalink
Updated changelog and pre-commit configurations. !minor
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed May 31, 2022
1 parent f9017f9 commit c1f1b49
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .changelog-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ variables:
starting_tag_pipeline:
- action: ReadFile
kwargs:
filename: {{ changelog_filename }}
filename: "{{ changelog_filename }}"
- action: FirstRegExMatch
kwargs:
pattern: (?im)^## (?P<rev>\d+\.\d+(?:\.\d+)?)\s+\(\d+-\d{2}-\d{2}\)$
Expand Down Expand Up @@ -43,7 +43,7 @@ body_pipeline:
output_pipeline:
- action: IncrementalFileInsert
kwargs:
filename: {{ changelog_filename }}
filename: "{{ changelog_filename }}"
last_heading_pattern: (?im)^## \d+\.\d+(?:\.\d+)?\s+\([0-9]+-[0-9]{2}-[0-9]{2}\)$

# Full or relative paths to look for output generation templates.
Expand Down
7 changes: 7 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ repos:
rev: 22.3.0
hooks:
- id: black
args: ["--line-length", "119", "--check"]
- id: black
args: ["--line-length", "119"]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
hooks:
Expand All @@ -20,6 +23,7 @@ repos:
- id: check-symlinks
- id: check-toml
- id: check-yaml
exclude: test.*
- id: debug-statements
- id: end-of-file-fixer
exclude: "^tests/resources/"
Expand All @@ -31,6 +35,7 @@ repos:
rev: 4.0.1
hooks:
- id: flake8
exclude: test.*
- repo: https://github.com/pycqa/pydocstyle
rev: 6.1.1
hooks:
Expand All @@ -41,6 +46,7 @@ repos:
rev: v1.8.1
hooks:
- id: darglint
exclude: test.*
args:
- -v 2
- "--message-template={path}:{line} in `{obj}`:\n {msg_id}: {msg}"
Expand All @@ -49,3 +55,4 @@ repos:
rev: 1.5.0 # or master if you're bold
hooks:
- id: interrogate
exclude: test.*
41 changes: 39 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
# Changelog

## 0.1.0 (2021-11-27)
## Unreleased (2022-05-31)

* Initial creation
[Compare the full difference.](https://github.com/coordt/cookie-composer/compare/0.1.0...HEAD)

### Fixes

- Fixed configurations. [df365df](https://github.com/coordt/cookie-composer/commit/df365dff8c522b6eb3fbc5efb4fef71162cd1f8b)

### New

- Added release tooling. [d0646d3](https://github.com/coordt/cookie-composer/commit/d0646d34e9af6159b08bca235687417cde18f1ee)

- Added code. [ccc4745](https://github.com/coordt/cookie-composer/commit/ccc47456bcb99407d60ce7f2b8ad9ac37572e126)

### Other

- [pre-commit.ci] auto fixes from pre-commit.com hooks. [63f2d7d](https://github.com/coordt/cookie-composer/commit/63f2d7d8c7e3a2f8a068dbc82411bd364fd5191e)

for more information, see https://pre-commit.ci
- [pre-commit.ci] pre-commit autoupdate. [8f6d661](https://github.com/coordt/cookie-composer/commit/8f6d66142a5c0950a9d8483133842944bd25f3b0)

**updates:** - https://github.com/timothycrosley/isorthttps://github.com/PyCQA/isort

- Migrated dependency management to pip-tools. [438c1a3](https://github.com/coordt/cookie-composer/commit/438c1a323d2663ef2823178782622d7d81dd342e)

- Vendored cookiecutter to use the latest version. [e6540e7](https://github.com/coordt/cookie-composer/commit/e6540e7239f58454d1412a06c23653566dbcc1cb)

### Updates

- Updated tests. [7c81df5](https://github.com/coordt/cookie-composer/commit/7c81df5b6978886c2939048808a3720c2bf3cb53)

## 0.1.0 (2022-02-28)

[Compare the full difference.](https://github.com/coordt/cookie-composer/compare/None...0.1.0)

### Other

- Initial commit. [abdef79](https://github.com/coordt/cookie-composer/commit/abdef79ef9413faaa9602847f1f98317f58a74f3)

- Initial commit. [8965b8a](https://github.com/coordt/cookie-composer/commit/8965b8abb708212dbfe664a211989e6c5c81966a)
2 changes: 2 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.changelog-config.yaml coreyoordt@gmail.com
.editorconfig

0 comments on commit c1f1b49

Please sign in to comment.