Skip to content

Commit

Permalink
Merge pull request #1761 from stfc/1760_release_2.3.1
Browse files Browse the repository at this point in the history
(Towards #1760) release 2.3.1
  • Loading branch information
rupertford authored Jun 16, 2022
2 parents 8b7e238 + 563ee13 commit 7992612
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

3) PR #1745 towards #1731. Split PSyLoop class from Loop node.

4) PR #1761 for #1760. Create release 2.3.1

release 2.3.0 9th June 2022

1) PR #1672. Fixes BOZ literal standard incompatibility in the
Expand Down
2 changes: 1 addition & 1 deletion doc/reference_guide/doxygen.config
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Reference Guide"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 2.3.0
PROJECT_NUMBER = 2.3.1

# 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 a
Expand Down
2 changes: 1 addition & 1 deletion doc/reference_guide/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = '2.3.0'
release = '2.3.1'


# -- General configuration ---------------------------------------------------
Expand Down
Binary file modified psyclone.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ def get_files(directory, install_path, valid_suffixes):
package_dir={"": "src"},
# TODO #1193: Pinned jsonschema to support older versions of python
# TODO #1507: remove dependence on 'six'
install_requires=['pyparsing', 'fparser==0.0.15', 'configparser',
install_requires=['pyparsing', 'fparser==0.0.16', 'configparser',
'six', 'jsonschema==3.0.2', 'sympy'],
extras_require={
'dag': ["graphviz"],
Expand Down
2 changes: 1 addition & 1 deletion src/psyclone/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

__MAJOR__ = 2
__MINOR__ = 3
__MICRO__ = 0
__MICRO__ = 1

__SHORT_VERSION__ = "{0:d}.{1:d}".format(__MAJOR__, __MINOR__)
__VERSION__ = "{0:d}.{1:d}.{2:d}".format(__MAJOR__, __MINOR__, __MICRO__)

0 comments on commit 7992612

Please sign in to comment.