From 4735963443257d6e92b3425c4bd135c5587b5b6b Mon Sep 17 00:00:00 2001 From: Yuichi Motoyama Date: Thu, 15 Apr 2021 15:56:31 +0900 Subject: [PATCH] bump up version to 1.0.1 --- README.md | 2 +- doc/en/source/conf.py | 2 +- doc/en/source/introduction.rst | 1 + doc/ja/source/conf.py | 2 +- doc/ja/source/introduction.rst | 1 + pyproject.toml | 2 +- src/py2dmat/__init__.py | 2 +- 7 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d1449157..8dcc9947 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ As algorithms, it offers the Nelder-Mead method, the grid search method, the Bay | Branch | Build status | Documentation | | :-: | :-: | :-: | | master | [![master](https://github.com/issp-center-dev/2DMAT/workflows/Test/badge.svg?branch=master)](https://github.com/issp-center-dev/2DMAT/actions?query=branch%3Amaster) | [![doc_en](https://img.shields.io/badge/doc-English-blue.svg)](https://issp-center-dev.github.io/2DMAT/manual/master/en/index.html) [![doc_ja](https://img.shields.io/badge/doc-Japanese-blue.svg)](https://issp-center-dev.github.io/2DMAT/manual/master/ja/index.html) | -| v1.0.0 | -- | [![doc_en](https://img.shields.io/badge/doc-English-blue.svg)](https://issp-center-dev.github.io/2DMAT/manual/v1.0.0/en/index.html) [![doc_ja](https://img.shields.io/badge/doc-Japanese-blue.svg)](https://issp-center-dev.github.io/2DMAT/manual/v1.0.0/ja/index.html) | +| v1.0.1 | -- | [![doc_en](https://img.shields.io/badge/doc-English-blue.svg)](https://issp-center-dev.github.io/2DMAT/manual/v1.0.1/en/index.html) [![doc_ja](https://img.shields.io/badge/doc-Japanese-blue.svg)](https://issp-center-dev.github.io/2DMAT/manual/v1.0.1/ja/index.html) | ## py2dmat diff --git a/doc/en/source/conf.py b/doc/en/source/conf.py index f4699b5d..19e84d85 100644 --- a/doc/en/source/conf.py +++ b/doc/en/source/conf.py @@ -57,7 +57,7 @@ # The short X.Y version. version = u'1.0' # The full version, including alpha/beta/rc tags. -release = u'1.0' +release = u'1.0.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/en/source/introduction.rst b/doc/en/source/introduction.rst index 30f97a3a..9381cbe4 100644 --- a/doc/en/source/introduction.rst +++ b/doc/en/source/introduction.rst @@ -33,6 +33,7 @@ We hope that you cite the following reference when you publish the results using Version Information ---------------------- +- v1.0.1: 2021-04-15 - v1.0.0: 2021-03-12 - v0.1.0: 2021-02-08 diff --git a/doc/ja/source/conf.py b/doc/ja/source/conf.py index a27a2b6f..e78778b9 100644 --- a/doc/ja/source/conf.py +++ b/doc/ja/source/conf.py @@ -22,7 +22,7 @@ author = '2DMAT developers' # The full version, including alpha/beta/rc tags -release = '1.0.0' +release = '1.0.1' # -- General configuration --------------------------------------------------- diff --git a/doc/ja/source/introduction.rst b/doc/ja/source/introduction.rst index 2ec2d5d5..9903f529 100644 --- a/doc/ja/source/introduction.rst +++ b/doc/ja/source/introduction.rst @@ -36,6 +36,7 @@ Copyright (c) <2020-> The University of Tokyo. All rights reserved. バージョン履歴 ---------------------- +- v1.0.1 : 2021-04-15 - v1.0.0 : 2021-03-12 - v0.1.0 : 2021-02-08 diff --git a/pyproject.toml b/pyproject.toml index 6e864b3f..4bf82342 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "py2dmat" -version = "1.0.0" +version = "1.0.1" description = "Data-analysis software of quantum beam diffraction experiments for 2D material structure" authors = ["2DMAT developers <2dmat-dev@issp.u-tokyo.ac.jp>"] license = "GPL-3.0-or-later" diff --git a/src/py2dmat/__init__.py b/src/py2dmat/__init__.py index 1909036b..587881c8 100644 --- a/src/py2dmat/__init__.py +++ b/src/py2dmat/__init__.py @@ -8,4 +8,4 @@ from . import algorithm from ._main import main -__version__ = "1.0.0" +__version__ = "1.0.1"