From da8346c1cbfa95e89d7a831f8e455b17a65b1395 Mon Sep 17 00:00:00 2001 From: Lee-Ping Wang Date: Thu, 8 Dec 2022 12:57:45 -0800 Subject: [PATCH] Update version number to v1.9.4 --- bin/ForceBalance.py | 2 +- devtools/conda-recipe/meta.yaml | 2 +- doc/api_header.tex | 2 +- doc/doxygen.cfg | 2 +- doc/header.tex | 2 +- setup.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/ForceBalance.py b/bin/ForceBalance.py index d46298864..7320b069b 100755 --- a/bin/ForceBalance.py +++ b/bin/ForceBalance.py @@ -60,7 +60,7 @@ def process(word, color): return Answer def main(): - printcool("Welcome to ForceBalance version 1.9.2! =D\nForce Field Optimization System\n\nAuthors:\nLee-Ping Wang\nYudong Qiu, Keri A. McKiernan\nJeffrey R. Wagner, Hyesu Jang, Simon Boothroyd\nArthur Vigil, Erik G. Brandt, John Stoppelman\nJohnny Israeli, Matt Thompson", ansi="1", bold=True, minwidth=64) + printcool("Welcome to ForceBalance version 1.9.4! =D\nForce Field Optimization System\n\nAuthors:\nLee-Ping Wang\nYudong Qiu, Keri A. McKiernan\nJeffrey R. Wagner, Hyesu Jang, Simon Boothroyd\nArthur Vigil, Erik G. Brandt, John Stoppelman\nJohnny Israeli, Matt Thompson", ansi="1", bold=True, minwidth=64) logostr = """ ,'+++ ,++++++. .:,,. diff --git a/devtools/conda-recipe/meta.yaml b/devtools/conda-recipe/meta.yaml index 2360aff32..5e82cbcb7 100644 --- a/devtools/conda-recipe/meta.yaml +++ b/devtools/conda-recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: forcebalance-dev - version: !!str 1.9.2 + version: !!str 1.9.4 source: path: ../.. diff --git a/doc/api_header.tex b/doc/api_header.tex index 0aad5c82e..dcea89751 100644 --- a/doc/api_header.tex +++ b/doc/api_header.tex @@ -57,7 +57,7 @@ \vspace*{1cm} \begin{center} -{\Large ForceBalance Developer API Guide version 1.9.2}\\ +{\Large ForceBalance Developer API Guide version 1.9.4}\\ \vspace*{2cm} {\large Generated by Doxygen 1.8.11}\\ \vspace*{2.5 cm} diff --git a/doc/doxygen.cfg b/doc/doxygen.cfg index b50a7dd0c..ef6b62c09 100644 --- a/doc/doxygen.cfg +++ b/doc/doxygen.cfg @@ -32,7 +32,7 @@ PROJECT_NAME = ForceBalance # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.9.2 +PROJECT_NUMBER = 1.9.4 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer diff --git a/doc/header.tex b/doc/header.tex index e4ea19825..14819bde8 100644 --- a/doc/header.tex +++ b/doc/header.tex @@ -57,7 +57,7 @@ \vspace*{1cm} \begin{center} -{\Large ForceBalance version 1.9.2}\\ +{\Large ForceBalance version 1.9.4}\\ \vspace*{2cm} {\large Generated by Doxygen 1.8.11}\\ \vspace*{2.5 cm} diff --git a/setup.py b/setup.py index b9c63122c..20a9b8e5a 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ #| doc/api_header.tex |# #| bin/ForceBalance.py |# #===================================# -__version__ = "v1.9.2" +__version__ = "v1.9.4" try: # use git to find current version git_describe = subprocess.check_output(["git", "describe"]).strip()