Commit 0d0b99ca authored by Joachim Folz's avatar Joachim Folz
Browse files

simplify Experiment & Run API

Add "extras" columns
Add "name" attribute to Experiment class
Interpret None values as NULL in *_set_* methods
Remove typically rarely used arguments like "tags" from init
Methods return self to allow chaining
parent fadbea8d
Loading
Loading
Loading
Loading
Loading
+9 −0
Changes for CHANGELOG: 9 added lines, 0 removed lines.
Original line number Diff line number Diff line
@@ -8,6 +8,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]


## [0.2.0]
### Changed
- Interpret None values as NULL in *_set_* methods
- Docopt: add dash to argument type suffixes, e.g., "*-int"
### Added
- Add "extras" columns to experiments and runs
- Add "name" attribute to Experiment class


## [0.1.4]
### Changed
- Rename "migrate" command to "setup"
+1 −1
Changes for sqltrack/__init__.py: 1 added line, 1 removed line.
Original line number Diff line number Diff line
@@ -3,4 +3,4 @@ import importlib.metadata
from .client import *
from .model import *

__version__ = "0.1.4"
__version__ = "0.2.0"
+199 −138

File changed.

Preview size limit exceeded, changes collapsed.