Skip to content

Commit

Permalink
Bump version: 0.3.3 → 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lmmentel committed Feb 27, 2021
1 parent 5066968 commit db30e69
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.3
current_version = 0.3.4
commit = True
tag = True

Expand All @@ -18,4 +18,3 @@ tag = True
[bumpversion:file:espresso/nebespresso.py]

[bumpversion:file:docs/source/conf.py]

4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = '0.3.3'
version = '0.3.4'
# The full version, including alpha/beta/rc tags.
release = '0.3.3'
release = '0.3.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion espresso/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
from .vibespresso import Vibespresso
from .nebespresso import NEBEspresso

__version__ = "0.3.3"
__version__ = "0.3.4"
2 changes: 1 addition & 1 deletion espresso/espresso.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from .utils import speciestuple, num2str, bool2str, convert_constraints
from .siteconfig import SiteConfig, preserve_cwd

__version__ = "0.3.3"
__version__ = "0.3.4"

log = logging.getLogger(__name__)
log.addHandler(logging.NullHandler())
Expand Down
2 changes: 1 addition & 1 deletion espresso/nebespresso.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from .siteconfig import SiteConfig


__version__ = "0.3.3"
__version__ = "0.3.4"


def splitinto(l, n):
Expand Down
2 changes: 1 addition & 1 deletion espresso/siteconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import hostlist as hl
from path import Path

__version__ = "0.3.3"
__version__ = "0.3.4"


def preserve_cwd(function):
Expand Down
2 changes: 1 addition & 1 deletion espresso/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from ase import constraints


__version__ = "0.3.3"
__version__ = "0.3.4"


speciestuple = namedtuple(
Expand Down
2 changes: 1 addition & 1 deletion espresso/vibespresso.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from ase.calculators.calculator import FileIOCalculator
from .espresso import Espresso

__version__ = "0.3.3"
__version__ = "0.3.4"


class Vibespresso(FileIOCalculator, object):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
URL = "https://github.com/lmmentel/ase-espresso"
AUTHOR = "Lukasz Mentel"
EMAIL = "[email protected]"
VERSION = '0.3.3'
VERSION = '0.3.4'
CLASSIFIERS = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit db30e69

Please sign in to comment.