From 70e1a52c018ac3859df48293b509d97cc1c617a8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 27 Jul 2023 23:33:49 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.1.0=20=E2=86=92=201.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- yascheduler/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c00ea4f..8e4ba18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v1.2.0 (2023-07-27) + +### Feat + +- **config**: warn on unknown config fields + ## v1.1.0 (2023-07-27) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 835932d..517aec8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi" [project] name = "yascheduler" -version = "1.1.0" +version = "1.2.0" description = """Yet another computing scheduler and cloud orchestration engine""" authors = [ {name = "Evgeny Blokhin", email = "eb@tilde.pro"}, diff --git a/yascheduler/__init__.py b/yascheduler/__init__.py index d9396e8..e7ae33e 100644 --- a/yascheduler/__init__.py +++ b/yascheduler/__init__.py @@ -1,7 +1,7 @@ from .client import Yascheduler from .variables import CONFIG_FILE, LOG_FILE, PID_FILE -__version__ = "1.1.0" +__version__ = "1.2.0" __all__ = [ "CONFIG_FILE", "LOG_FILE",