Skip to content

Commit eb4936f

Browse files
committed
bump: release 0.10.0 → 0.11.0
Automatically generated by Commitizen.
1 parent 39bd296 commit eb4936f

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## v0.11.0 (2024-06-18)
2+
3+
### Feat
4+
5+
- add dependency resolution for Python (#748)
6+
- add checks to determine if repo and commit came from provenance (#704)
7+
- add support for GitHub provenances passed as input (#732)
8+
9+
### Fix
10+
11+
- modify verify-policy to exits succesfully if a passed policy exists and allow components having no repository to pass policies (#766)
12+
- force docker to use linux/amd64 platform (#768)
13+
- do not fetch from origin/HEAD for local repo targets (#734)
14+
115
## v0.10.0 (2024-04-29)
216

317
### Feat

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ version_files = [
128128
"src/macaron/__init__.py:__version__",
129129
]
130130
major_version_zero = true
131-
version = "0.10.0"
131+
version = "0.11.0"
132132

133133

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

src/macaron/__init__.py

+1-1
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.10.0"
11+
__version__ = "0.11.0"
1212

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

0 commit comments

Comments
 (0)