Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v2021.12.0 #5

Merged
merged 1 commit into from
Dec 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
TWINE_REPOSITORY: pypi
run: |
python -m build --wheel
twine upload dist/*
python -m build
twine upload dist/*
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
author = "Akshay Gupta"

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

Expand Down
2 changes: 1 addition & 1 deletion edgetest_pip_tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Package initialization."""

__version__ = "2021.11.0"
__version__ = "2021.12.0"

__title__ = "edgetest-pip-tools"
__description__ = "pip-tools integration for edgetest"
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ build =
build
twine
wheel
bumpver
dev =
%(tests)s
%(docs)s
Expand All @@ -68,7 +69,7 @@ edgetest =
piptools = edgetest_pip_tools.plugin

[bumpver]
current_version = "2021.11.0"
current_version = "2021.12.0"
version_pattern = "YYYY.MM.INC0"
commit_message = "Bump {old_version} to {new_version}"
commit = True
Expand All @@ -85,7 +86,7 @@ edgetest_pip_tools/__init__.py =
lint=pylint

[bdist_wheel]
python-tag = py37
python-tag = py3

[flake8]
max-line-length = 100
Expand Down