Skip to content

Commit

Permalink
#2108 update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
arporter committed Sep 29, 2023
1 parent c30d614 commit 2341379
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
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.1
PROJECT_NUMBER = 2.4.0

# 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.1'
release = '2.4.0'


# -- General configuration ---------------------------------------------------
Expand Down
Binary file modified psyclone.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions src/psyclone/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -----------------------------------------------------------------------------
# BSD 3-Clause License
#
# Copyright (c) 2017-2022, Science and Technology Facilities Council.
# Copyright (c) 2017-2023, Science and Technology Facilities Council.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -38,8 +38,8 @@
used in setup.py and doc/conf.py '''

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

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

0 comments on commit 2341379

Please sign in to comment.