Skip to content

Commit d044b19

Browse files
committed
bump: release 0.20.0 → 0.21.0
Automatically generated by Commitizen.
1 parent 4116250 commit d044b19

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## v0.21.0 (2026-02-23)
2+
3+
### Feat
4+
5+
- validate buildspec dockerfile (#1280)
6+
- improve buildspec and dockerfile generation (#1279)
7+
- include has_binaries flag in build spec (#1278)
8+
- infer chronologically likeliest setuptools version (#1260)
9+
- prepare Macaron GitHub Action to publish on GitHub Marketplace (#1259)
10+
- add new dataflow analysis, replacing existing analysis for GitHub Actions (#1229)
11+
- add support to use inferred build tools and to extract tool-specific build dependency information (#1256)
12+
13+
### Fix
14+
15+
- **gen-build-spec**: remove the default -Dmaven.test.skip=true mvn option from the default spec (#1301)
16+
- **gen-build-spec**: handle errors gracefully when build tool is not supported (#1303)
17+
- handle GitHub Actions job needs field case-insensitively in analysis. (#1305)
18+
- add the missing provenance asset links to the reports (#1271)
19+
- use --output option for Macaron Python Package (#1266)
20+
21+
### Refactor
22+
23+
- improve Macaron wheel name and add a new install script (#1291)
24+
125
## v0.20.0 (2025-12-04)
226

327
### Feat

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ version_files = [
146146
"src/macaron/__init__.py:__version__",
147147
]
148148
major_version_zero = true
149-
version = "0.20.0"
149+
version = "0.21.0"
150150

151151

152152
# https://github.com/pytest-dev/pytest-cov

src/macaron/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# The version of this package. There's no comprehensive, official list of other
99
# magic constants, so we stick with this one only for now. See also this conversation:
1010
# https://stackoverflow.com/questions/38344848/is-there-a-comprehensive-table-of-pythons-magic-constants
11-
__version__ = "0.20.0"
11+
__version__ = "0.21.0"
1212

1313
# The path to the Macaron package.
1414
MACARON_PATH = os.path.dirname(os.path.abspath(__file__))

0 commit comments

Comments
 (0)