From 2c23e0da57b7c64b0a19e534b9f75da70f140159 Mon Sep 17 00:00:00 2001 From: Chunlei Wu Date: Mon, 17 Jul 2023 14:29:07 -0700 Subject: [PATCH] build: :building_construction: mark for 0.12.2 release --- CHANGES.txt | 6 ++++++ biothings/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index defcad32a..9eac5cca6 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,9 @@ +v0.12.2 (2022/07/17) + Bugfixes: + - 7e9583ec Fix dict default vals to work with dicts. (#292) + - 77c577cc Break Circular Dependency (#291) + - 7044abba Set plugin name to the folder name for Advanced plugins. (#290) + v0.12.1 (2022/07/05) Bugfixes: - biothings.cli: fixed "logger is not defined" error when typer is not installed diff --git a/biothings/__init__.py b/biothings/__init__.py index 125edc492..a221b672c 100644 --- a/biothings/__init__.py +++ b/biothings/__init__.py @@ -8,7 +8,7 @@ class _version_info(NamedTuple): micro: int -version_info = _version_info(0, 12, "1") +version_info = _version_info(0, 12, "2") __version__ = ".".join(map(str, version_info))