Skip to content

Commit e8ce555

Browse files
committed
bump: release 0.9.0 → 0.10.0
Automatically generated by Commitizen.
1 parent fece382 commit e8ce555

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## v0.10.0 (2024-04-29)
2+
3+
### Feat
4+
5+
- allow provenance files to be files containing a URL pointing to the actual provenance file which will be transparently downloaded (#710)
6+
- allow defining a git service from defaults.ini (#694)
7+
- improve VSA generation with digest for each subject (#685)
8+
9+
### Fix
10+
11+
- improve run_macaron.sh bash and docker version compatibility (#717)
12+
- store language in build as code check for non-GitHub CI services (#716)
13+
- extract digest from provenance when repo path is provided but digest is not provided from the user (#711)
14+
- fix a compatibility issue in run_macaron.sh for macOS (#701)
15+
- make build script check fail when no repo is found (#699)
16+
117
## v0.9.0 (2024-04-05)
218

319
### Feat

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ version_files = [
123123
"src/macaron/__init__.py:__version__",
124124
]
125125
major_version_zero = true
126-
version = "0.9.0"
126+
version = "0.10.0"
127127

128128

129129
# 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.9.0"
11+
__version__ = "0.10.0"
1212

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

0 commit comments

Comments
 (0)