Skip to content

Commit f19a406

Browse files
committed
Bump version 1.1.0 -> 1.2.0
1 parent f1cab7d commit f19a406

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,7 @@ OR
1616

1717
Changelog
1818
=========
19-
## 1.0.0 - TBD
19+
## 1.0.0
2020
- Initial API stable release.
21+
## 1.2.0
22+
- Add SQLite support.

ml_scheduler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
33
A lightweight machine learning experiments scheduler in a few lines of simple Python
44
"""
5-
__version__ = "1.0.0"
5+
__version__ = "1.2.0"
66
import coloredlogs
77

88
coloredlogs.install()

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ml_scheduler"
3-
version = "1.1.0"
3+
version = "1.2.0"
44
description = "A lightweight machine learning experiment scheduler that automates resource management (e.g., GPUs and models) and batch runs experiments with just a few lines of Python code."
55
authors = [
66
{name = "Yiwen Hu", email = "[email protected]"},
@@ -46,7 +46,7 @@ line-length = 100
4646
profile = "hug"
4747

4848
[tool.bumpver]
49-
current_version = "1.1.0"
49+
current_version = "1.2.0"
5050
version_pattern = "MAJOR.MINOR.PATCH"
5151
commit_message = "Bump version {old_version} -> {new_version}"
5252
tag_message = "{new_version}"

0 commit comments

Comments
 (0)