Skip to content

Commit 7992612

Browse files
authored
Merge pull request #1761 from stfc/1760_release_2.3.1
(Towards #1760) release 2.3.1
2 parents 8b7e238 + 563ee13 commit 7992612

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed

changelog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

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

7+
4) PR #1761 for #1760. Create release 2.3.1
8+
79
release 2.3.0 9th June 2022
810

911
1) PR #1672. Fixes BOZ literal standard incompatibility in the

doc/reference_guide/doxygen.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "Reference Guide"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 2.3.0
41+
PROJECT_NUMBER = 2.3.1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

doc/reference_guide/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# The short X.Y version
2929
version = ''
3030
# The full version, including alpha/beta/rc tags
31-
release = '2.3.0'
31+
release = '2.3.1'
3232

3333

3434
# -- General configuration ---------------------------------------------------

psyclone.pdf

-305 Bytes
Binary file not shown.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def get_files(directory, install_path, valid_suffixes):
159159
package_dir={"": "src"},
160160
# TODO #1193: Pinned jsonschema to support older versions of python
161161
# TODO #1507: remove dependence on 'six'
162-
install_requires=['pyparsing', 'fparser==0.0.15', 'configparser',
162+
install_requires=['pyparsing', 'fparser==0.0.16', 'configparser',
163163
'six', 'jsonschema==3.0.2', 'sympy'],
164164
extras_require={
165165
'dag': ["graphviz"],

src/psyclone/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
__MAJOR__ = 2
4141
__MINOR__ = 3
42-
__MICRO__ = 0
42+
__MICRO__ = 1
4343

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

0 commit comments

Comments
 (0)