File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## v0.6.0 (2023-11-03)
2
+
3
+ ### Feat
4
+
5
+ - add download timeout config (#483 )
6
+ - support gzipped provenance files (#504 )
7
+ - support running the analysis with SBOM and the main software component with no repository (#165 )
8
+ - add support for Go, npm and Yarn build tools (#451 )
9
+ - enable repo finder to support more languages via Open Source Insights (#388 )
10
+
11
+ ### Fix
12
+
13
+ - resolve podman compatibility issues (#512 )
14
+ - do not use git set-branches if the target branch is not currently available in the repository (#491 )
15
+ - fix bash syntax error when running ` run_macaron.sh ` on MacOS (#528 )
16
+
17
+ ### Refactor
18
+
19
+ - refactor interface of base check (#513 )
20
+ - allow the branch name in the schema of a repository to be null (#532 )
21
+
22
+ ### Perf
23
+
24
+ - use partial clone to reduce clone time (#389 )
25
+
1
26
## v0.5.0 (2023-09-14)
2
27
3
28
### Feat
Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ version_files = [
122
122
" src/macaron/__init__.py:__version__" ,
123
123
]
124
124
major_version_zero = true
125
- version = " 0.5 .0"
125
+ version = " 0.6 .0"
126
126
127
127
128
128
# 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.5 .0"
11
+ __version__ = "0.6 .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