Skip to content

Commit

Permalink
Prepare release v1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spoutn1k committed Nov 4, 2022
1 parent 63d27b4 commit 410bb2e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
v1.0rc7
v1.0 (Nov 04 2022)
---------------------

- Wi4MPI support expanded

v1.0rc6 (Mar 09 2022)
---------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Jean-Baptiste Skutnik'

# The full version, including alpha/beta/rc tags
# release = '1.0'
version = release = '1.0'

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

Expand Down
5 changes: 3 additions & 2 deletions e4s_cl/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
PACKAGE = "e4s_cl"
VERSION = (1, 0)
RELEASE_CANDIDATE = 6
__version__ = '.'.join(map(str, VERSION)) + (f"rc{RELEASE_CANDIDATE}" if RELEASE_CANDIDATE else '')
RELEASE_CANDIDATE = 0
__version__ = '.'.join(map(
str, VERSION)) + (f"rc{RELEASE_CANDIDATE}" if RELEASE_CANDIDATE else '')
WEBSITE = 'https://e4s-cl.readthedocs.io'
LICENSE = 'MIT'

0 comments on commit 410bb2e

Please sign in to comment.