Skip to content

Commit f78be5c

Browse files
authored
Merge pull request #2339 from stfc/2108_release240
(closes #2108) release 2.4.0
2 parents 5506064 + ddddaf4 commit f78be5c

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

changelog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2+
release 2.4.0 29th of September 2023
3+
14
1) PR #1758 for #1741. Splits the PSyData read functionality into a
25
standalone module to remove dependence on infrastructure for
36
driver code.

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.1
41+
PROJECT_NUMBER = 2.4.0
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.1'
31+
release = '2.4.0'
3232

3333

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

external/fparser

Submodule fparser updated 1 file

psyclone.pdf

30.4 KB
Binary file not shown.

src/psyclone/version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -----------------------------------------------------------------------------
22
# BSD 3-Clause License
33
#
4-
# Copyright (c) 2017-2022, Science and Technology Facilities Council.
4+
# Copyright (c) 2017-2023, Science and Technology Facilities Council.
55
# All rights reserved.
66
#
77
# Redistribution and use in source and binary forms, with or without
@@ -38,8 +38,8 @@
3838
used in setup.py and doc/conf.py '''
3939

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

4444
__SHORT_VERSION__ = f"{__MAJOR__:d}.{__MINOR__:d}"
4545
__VERSION__ = f"{__MAJOR__:d}.{__MINOR__:d}.{__MICRO__:d}"

0 commit comments

Comments
 (0)