File tree 3 files changed +16
-2
lines changed
3 files changed +16
-2
lines changed Original file line number Diff line number Diff line change
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
+
1
15
## v0.10.0 (2024-04-29)
2
16
3
17
### Feat
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ version_files = [
128
128
" src/macaron/__init__.py:__version__" ,
129
129
]
130
130
major_version_zero = true
131
- version = " 0.10 .0"
131
+ version = " 0.11 .0"
132
132
133
133
134
134
# https://github.com/pytest-dev/pytest-cov
Original file line number Diff line number Diff line change 8
8
# The version of this package. There's no comprehensive, official list of other
9
9
# magic constants, so we stick with this one only for now. See also this conversation:
10
10
# https://stackoverflow.com/questions/38344848/is-there-a-comprehensive-table-of-pythons-magic-constants
11
- __version__ = "0.10 .0"
11
+ __version__ = "0.11 .0"
12
12
13
13
# The path to the Macaron package.
14
14
MACARON_PATH = os .path .dirname (os .path .abspath (__file__ ))
You can’t perform that action at this time.
0 commit comments