Skip to content

Commit 516552a

Browse files
committed
bump: release 0.5.0 → 0.6.0
Automatically generated by Commitizen.
1 parent 44c07b4 commit 516552a

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
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+
126
## v0.5.0 (2023-09-14)
227

328
### Feat

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ version_files = [
122122
"src/macaron/__init__.py:__version__",
123123
]
124124
major_version_zero = true
125-
version = "0.5.0"
125+
version = "0.6.0"
126126

127127

128128
# 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.5.0"
11+
__version__ = "0.6.0"
1212

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

0 commit comments

Comments
 (0)