Skip to content

Commit

Permalink
Bump version: 0.11.0 → 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianPugh committed Jun 12, 2024
1 parent 4255090 commit d68d96b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 10 deletions.
2 changes: 1 addition & 1 deletion lox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

__author__ = """Brian Pugh"""
__email__ = "bnp117@gmail.com"
__version__ = "0.11.0"
__version__ = "0.12.0"

__all__ = [
"Announcement",
Expand Down
10 changes: 2 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.11.0
current_version = 0.12.0
commit = True
tag = True

Expand All @@ -17,16 +17,10 @@ universal = 1
[flake8]
exclude = docs
max-line-length = 88
# E203: whitespace before ":". Sometimes violated by black.
# E402: Module level import not at top of file. Violated by lazy imports.
# F401: Module imported but unused.
# D100-D107: Missing docstrings
# D200: One-line docstring should fit on one line with quotes.
# D202: no empty line after docstring
extend-ignore = E203,E402,F401,D100,D101,D102,D103,D104,D105,D106,D107,D200,D202,D205,D400
docstring-convention = numpy
# Ignore missing docstrings within unit testing functions.
per-file-ignores = **/tests/:D100,D101,D102,D103,D104,D105,D106,D107

[aliases]
test = pytest

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages, setup
from setuptools.command.install import install

version = "0.11.0"
version = "0.12.0"


class VerifyVersionCommand(install):
Expand Down

0 comments on commit d68d96b

Please sign in to comment.