Skip to content

Commit 9637281

Browse files
authored
Separate Dev Dependencies (#69)
1 parent 6620c5b commit 9637281

3 files changed

Lines changed: 57 additions & 52 deletions

File tree

CHANGELOG.md

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

17+
### [0.10.2] - 2023-03-05
18+
19+
#### Changed
20+
- Moved dev dependencies into separate group, reducing install size.
21+
1722
### [0.10.1] - 2023-03-05
1823

1924
#### Changed
@@ -127,7 +132,8 @@ The [Changelogger tool](https://pypi.org/project/changelogged) is used for autom
127132
- `unreleased add`, which allows inline or prompted adding of unreleased changes.
128133
<!-- END RELEASE NOTES -->
129134
<!-- BEGIN LINKS -->
130-
[Unreleased]: https://github.com/award28/changelogger/compare/0.10.1...HEAD
135+
[Unreleased]: https://github.com/award28/changelogger/compare/0.10.2...HEAD
136+
[0.10.2]: https://github.com/award28/changelogger/compare/0.10.1...0.10.2
131137
[0.10.1]: https://github.com/award28/changelogger/compare/0.10.0...0.10.1
132138
[0.10.0]: https://github.com/award28/changelogger/compare/0.9.1...0.10.0
133139
[0.9.1]: https://github.com/award28/changelogger/compare/0.9.0...0.9.1

poetry.lock

Lines changed: 43 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "changelogged"
3-
version = "0.10.1"
3+
version = "0.10.2"
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>"]
@@ -28,12 +28,15 @@ semver = "2.13.0"
2828
jinja2 = "3.1.2"
2929
pyyaml = "6.0"
3030
gitpython = "3.1.31"
31-
pytest = "^7.2.1"
32-
freezegun = "^1.2.2"
33-
mypy = "^0.991"
3431
coverage = "^7.1.0"
3532

3633

34+
[tool.poetry.group.dev.dependencies]
35+
coverage = "^7.2.1"
36+
mypy = "^1.0.1"
37+
freezegun = "^1.2.2"
38+
pytest = "^7.2.2"
39+
3740
[build-system]
3841
requires = ["poetry-core"]
3942
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)