File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ version_files = [
121121 " src/macaron/__init__.py:__version__" ,
122122]
123123major_version_zero = true
124- version = " 0.2 .0"
124+ version = " 0.3 .0"
125125
126126
127127# https://github.com/pytest-dev/pytest-cov
Original file line number Diff line number Diff line change 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.
1414MACARON_PATH = os .path .dirname (os .path .abspath (__file__ ))
You can’t perform that action at this time.
0 commit comments