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
+
1
14
## v0.2.0 (2023-07-17)
2
15
3
16
### Feat
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ version_files = [
121
121
" src/macaron/__init__.py:__version__" ,
122
122
]
123
123
major_version_zero = true
124
- version = " 0.2 .0"
124
+ version = " 0.3 .0"
125
125
126
126
127
127
# 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.2 .0"
11
+ __version__ = "0.3 .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