Skip to content

Commit

Permalink
Merge branch 'main' of github.com:mosdef-hub/foyer into fix-dep-warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjonesBSU committed Aug 20, 2024
2 parents 665b5ef + 3bb4063 commit 82cce0b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ci:
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.5.7
rev: v0.6.1
hooks:
# Run the linter.
- id: ruff
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
copyright = "2014-2020, Vanderbilt University"

# The short X.Y version
version = "0.12.1"
version = "1.0.0"
# The full version, including alpha/beta/rc tags
release = version

Expand Down
2 changes: 1 addition & 1 deletion foyer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
from foyer.forcefield import Forcefield
from foyer.forcefields import forcefields

__version__ = "0.12.1"
__version__ = "1.0.0"

__all__ = ("Forcefield", "forcefields", "__version__")
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.12.1
current_version = 1.0.0
commit = True
tag = True
message = Bump to version {new_version}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from setuptools import find_packages, setup

#####################################
VERSION = "0.12.1"
VERSION = "1.0.0"
ISRELEASED = True
if ISRELEASED:
__version__ = VERSION
Expand Down

0 comments on commit 82cce0b

Please sign in to comment.