Skip to content

Commit 0f56f66

Browse files
committed
bump: release 0.2.0 → 0.3.0
Automatically generated by Commitizen.
1 parent 7ecab7e commit 0f56f66

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## v0.3.0 (2023-08-22)
2+
3+
### Feat
4+
5+
- add support for JFrog Artifactory and witness provenances produced on GitLab CI (#349)
6+
- introduce a new data model and software components based on PURL (#305)
7+
8+
### Fix
9+
10+
- **orm**: use the host’s timezone when persisting datetime objects without a timezone, instead of forcing them to UTC (#397)
11+
- handle cloning issues when repo is in an unexpected state (#395)
12+
- **orm**: serialize datetime object’s timezone instead of always coercing to UTC when persisting to the SQLite db (#381)
13+
114
## v0.2.0 (2023-07-17)
215

316
### Feat

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ version_files = [
121121
"src/macaron/__init__.py:__version__",
122122
]
123123
major_version_zero = true
124-
version = "0.2.0"
124+
version = "0.3.0"
125125

126126

127127
# 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.2.0"
11+
__version__ = "0.3.0"
1212

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

0 commit comments

Comments
 (0)