Skip to content

Commit e9476a6

Browse files
authored
bump minor version to 0.12 (#82)
1 parent 752a94a commit e9476a6

3 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ The [Changelogger tool](https://pypi.org/project/changelogged) is used for autom
1414
<!-- BEGIN RELEASE NOTES -->
1515
### [Unreleased]
1616

17+
### [0.12.0] - 2023-03-18
18+
19+
#### Added
20+
- The `template_dir` option in the `.changelogger.yml` config file. This option allows users to override the default template location.
21+
- Jinja templates now have full funcitonality, as the BaseLoader has been deprecated in favor of the FileSystemLoader.
22+
- Exception information is now provided to help understand the cause of an upgrade exception.
23+
24+
#### Changed
25+
- The `jinja_rel_path` versioned file key has been replaced with the `template` key.
26+
1727
### [0.11.4] - 2023-03-17
1828

1929
#### Added
@@ -157,7 +167,8 @@ The [Changelogger tool](https://pypi.org/project/changelogged) is used for autom
157167
- `unreleased add`, which allows inline or prompted adding of unreleased changes.
158168
<!-- END RELEASE NOTES -->
159169
<!-- BEGIN LINKS -->
160-
[Unreleased]: https://github.com/award28/changelogger/compare/0.11.4...HEAD
170+
[Unreleased]: https://github.com/award28/changelogger/compare/0.12.0...HEAD
171+
[0.12.0]: https://github.com/award28/changelogger/compare/0.11.4...0.12.0
161172
[0.11.4]: https://github.com/award28/changelogger/compare/0.11.3...0.11.4
162173
[0.11.3]: https://github.com/award28/changelogger/compare/0.11.2...0.11.3
163174
[0.11.2]: https://github.com/award28/changelogger/compare/0.11.1...0.11.2

changelogger/conf/defaults.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from pathlib import Path
22

3-
CHANGELOGGER_VERSION = "0.11.4"
3+
CHANGELOGGER_VERSION = "0.12.0"
44

55
DEFAULT_CHANGELOG_PATH = Path("CHANGELOG.md")
66

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "changelogged"
3-
version = "0.11.4"
3+
version = "0.12.0"
44
description = "Automated management of your changelog and other versioned files, following the principles of Keep a Changelog and Semantic Versioning."
55
license = "MIT"
66
authors = ["award28 <austin.ward@klaviyo.com>"]

0 commit comments

Comments
 (0)