From 37d97fe430433c70f4b97f0022c7c6be497ae5f2 Mon Sep 17 00:00:00 2001 From: Ben Gyori Date: Mon, 5 Sep 2022 10:38:02 -0400 Subject: [PATCH] Bump version --- doc/conf.py | 6 +++--- indra/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 9683cb7324..c251167cd0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -61,7 +61,7 @@ # General information about the project. project = 'INDRA' -copyright = '2021, B. M. Gyori, J. A. Bachman' +copyright = '2022, B. M. Gyori, J. A. Bachman' author = 'B. M. Gyori, J. A. Bachman' # The version info for the project you're documenting, acts as replacement for @@ -69,9 +69,9 @@ # built documents. # # The short X.Y version. -version = '1.21' +version = '1.22' # The full version, including alpha/beta/rc tags. -release = '1.21.0' +release = '1.22.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/indra/__init__.py b/indra/__init__.py index c079ef241d..08e72c0c12 100644 --- a/indra/__init__.py +++ b/indra/__init__.py @@ -2,7 +2,7 @@ import logging import os import sys -__version__ = '1.21.0' +__version__ = '1.22.0' __all__ = ['assemblers', 'belief', 'databases', 'explanation', 'literature', 'mechlinker', 'preassembler', 'sources', 'tools', 'util'] diff --git a/setup.py b/setup.py index 37ed546a35..fdf054f07d 100755 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def main(): for dep in deps}) setup(name='indra', - version='1.21.0', + version='1.22.0', description='Integrated Network and Dynamical Reasoning Assembler', long_description=long_description, long_description_content_type='text/markdown',