From 9f752eb126ffad153ce70fc516fa0af1728b1040 Mon Sep 17 00:00:00 2001 From: Chunlei Wu Date: Mon, 3 Oct 2022 17:19:42 -0700 Subject: [PATCH] build: set version 0.11.1 for release --- biothings/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biothings/__init__.py b/biothings/__init__.py index 5dd858949..4e28d56df 100644 --- a/biothings/__init__.py +++ b/biothings/__init__.py @@ -8,7 +8,7 @@ class _version_info(NamedTuple): micro: int -version_info = _version_info(0, 11, 0) +version_info = _version_info(0, 11, 1) __version__ = '.'.join(map(str, version_info))