Skip to content

Commit 0dc07da

Browse files
committed
2.0.1
1 parent 42a1587 commit 0dc07da

File tree

9 files changed

+15
-9
lines changed

9 files changed

+15
-9
lines changed

abics/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.0.0"
1+
__version__ = "2.0.1"

abics/scripts/activelearn.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323

2424
import numpy as np
2525

26+
from abics import __version__
27+
2628
from abics.mc import RandomSampling
2729

2830
from abics.mc_mpi import (
@@ -480,7 +482,7 @@ def main_impl(tomlfile):
480482
def main():
481483
now = datetime.datetime.now()
482484
if MPI.COMM_WORLD.Get_rank() == 0:
483-
print("Running abics_mlref (abICS v.2.0.0) on {}".format(now))
485+
print("Running abics_mlref (abICS v{}) on {}".format(__version__, now))
484486

485487
tomlfile = sys.argv[1] if len(sys.argv) > 1 else "input.toml"
486488
if MPI.COMM_WORLD.Get_rank() == 0:

abics/scripts/main.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
import numpy as np
2323
import scipy.constants as constants
2424

25+
from abics import __version__
2526
from abics.mc import CanonicalMonteCarlo, RandomSampling
2627
from abics.mc_mpi import (
2728
RX_MPI_init,
@@ -386,7 +387,7 @@ def main():
386387
now = datetime.datetime.now()
387388

388389
if MPI.COMM_WORLD.Get_rank() == 0:
389-
print("Running abics_sampling (abICS v.2.0.0) on {}".format(now))
390+
print("Running abics_sampling (abICS v{}) on {}".format(__version__, now))
390391

391392
tomlfile = sys.argv[1] if len(sys.argv) > 1 else "input.toml"
392393
if MPI.COMM_WORLD.Get_rank() == 0:

abics/scripts/train.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
import sys, datetime
1818

19+
from abics import __version__
1920
from abics.applications.latgas_abinitio_interface.params import DFTParams, TrainerParams
2021
from abics.applications.latgas_abinitio_interface import aenet_trainer
2122
from abics.applications.latgas_abinitio_interface import map2perflat
@@ -234,7 +235,7 @@ def main_impl(tomlfile):
234235

235236
def main():
236237
now = datetime.datetime.now()
237-
print("Running abics_train (abICS v.2.0.0) on {}".format(now))
238+
print("Running abics_train (abICS v{}) on {}".format(__version__, now))
238239
tomlfile = sys.argv[1] if len(sys.argv) > 1 else "input.toml"
239240
print("-Reading input from: {}".format(tomlfile))
240241
main_impl(tomlfile)

docs/sphinx/en/source/about/info.rst

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ abICS is developed by the following members.
3636
Version information
3737
------------------------------------------
3838

39+
- ver. 2.0.1 : 2022/06/24.
3940
- ver. 2.0 : 2022/06/24.
4041
- ver. 1.0 : 2020/05/01.
4142
- ver. 1.0-beta : 2020/03/31.

docs/sphinx/en/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = u'2.0.0'
61+
version = u'2.0'
6262
# The full version, including alpha/beta/rc tags.
63-
release = u'2.0.0'
63+
release = u'2.0.1'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.

docs/sphinx/ja/source/about/info.rst

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ abICSは以下のメンバーで開発しています.
3737
バージョン履歴
3838
------------------------------------------
3939

40+
- ver.2.0.1 : 2022/11/04.
4041
- ver.2.0 : 2022/06/24.
4142
- ver.1.0 : 2020/05/01.
4243
- ver.1.0-beta : 2020/03/31.

docs/sphinx/ja/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = u'2.0.0'
58+
version = u'2.0'
5959
# The full version, including alpha/beta/rc tags.
60-
release = u'2.0.0'
60+
release = u'2.0.1'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "abics"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
description = "ab-Initio Configuration Sampling tool kit"
55
authors = ["abICS developers <[email protected]>"]
66
license = "GPL-3.0-or-later"

0 commit comments

Comments
 (0)