Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/reference_guide/doxygen.config
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = "Reference Guide"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 3.3.1-dev
PROJECT_NUMBER = 3.3.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 viewers a
Expand Down
10 changes: 6 additions & 4 deletions src/psyclone/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,16 @@

''' Single location for the current version number of PSyclone. This is
used in setup.py and
doc/{user_guide,developer_guide,reference_guide/source}/conf.py '''
doc/{user_guide,developer_guide,reference_guide/source}/conf.py

It is NOT used in doc/reference_guide/doxygen.config'''

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

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a bit unfortunate that we have to move a number down. How did that happen? Was it because we did a release candidate and didn't do the associated release?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes. We did the rc release and then I bumped the working version to 3.3.1-dev. In retrospect this should probably have been 3.3.0-rc2-dev.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(I was expecting that we'd make the release shortly after the rc but in the end, it didn't make sense to do that.)


# Version suffix (e.g. -rc1 or -dev)
_VERSION_SUFFIX = "-dev"
# Version suffix e.g. "-rc1", "-dev" or "" (for a full release)
_VERSION_SUFFIX = ""

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