Skip to content

Commit e0994a8

Browse files
committed
post-release cleanup
* start next changelog * update copyright year * rephrase `Requirement.in_groups` docstring
1 parent d1f9e42 commit e0994a8

5 files changed

Lines changed: 18 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,19 @@ Full diff: <https://github.com/latk/ganzua/compare/{last_release}...HEAD>
2222
2323
-->
2424

25+
## Unreleased
26+
27+
Breaking changes:
28+
29+
New features:
30+
31+
Fixes:
32+
33+
Other:
34+
35+
Full diff: <https://github.com/latk/ganzua/compare/v0.4.0...HEAD>
36+
37+
2538
## v0.4.0 (2026-04-11) {#v0.4.0}
2639

2740
This release brings fixes and quality-of-life improvements that were found through continued real-world usage.
@@ -70,6 +83,7 @@ Other:
7083

7184
Full diff: <https://github.com/latk/ganzua/compare/v0.3.0...v0.4.0>
7285

86+
7387
## v0.3.0 (2025-11-24) {#v0.3.0}
7488

7589
This release focuses on extracting information about package sources, but also includes quality-of-life improvements and bug fixes. There are no breaking changes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ Ganzua does not offer GitHub Actions, but it's really easy to integrate Ganzua i
205205

206206
<!-- ANCHOR: license -->
207207

208-
Copyright 2025 Lukas Atkinson
208+
Copyright 2025-2026 Lukas Atkinson
209209

210210
Licensed under the Apache License, Version 2.0 (the "License");
211211
you may not use this file except in compliance with the License.

docs/cli/ganzua-constraints-inspect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ which is why the `in_groups` and `in_extras` fields may have multiple values.
172172
* **`in_groups`**?: array(string)\
173173
Dependency groups that this requirement is part of.
174174

175-
*Changed in Ganzua 0.4.0:* renamed from `groups`.
175+
*Changed in Ganzua 0.4.0:* renamed `groups` to `in_groups`.
176176

177177
*Added in Ganzua 0.2.0.*
178178
* **`in_extras`**?: array(string)\

docs/cli/schema.constraints-inspect.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"type": "string"
2929
},
3030
"in_groups": {
31-
"description": "Dependency groups that this requirement is part of.\n\n*Changed in Ganzua 0.4.0:* renamed from `groups`.\n\n*Added in Ganzua 0.2.0.*",
31+
"description": "Dependency groups that this requirement is part of.\n\n*Changed in Ganzua 0.4.0:* renamed `groups` to `in_groups`.\n\n*Added in Ganzua 0.2.0.*",
3232
"items": {
3333
"type": "string"
3434
},

src/ganzua/_requirement.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class Requirement(t.TypedDict):
9898
in_groups: t.NotRequired[t.Annotated[frozenset[Name], SerializeSorted]]
9999
"""Dependency groups that this requirement is part of.
100100
101-
*Changed in Ganzua 0.4.0:* renamed from `groups`.
101+
*Changed in Ganzua 0.4.0:* renamed `groups` to `in_groups`.
102102
103103
*Added in Ganzua 0.2.0.*
104104
"""

0 commit comments

Comments
 (0)