Skip to content

Devel #127

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

Merged
merged 2 commits into from
Sep 9, 2021
Merged

Devel #127

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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.11
current_version = 0.6.12
commit = True
tag = True

Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
History
=======

0.6.12 (2021-09-10)
-------------------

* Fix some shit from migrating master -> main
* Makefile updates

0.6.11 (2021-09-09)
-------------------

Expand Down
9 changes: 6 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ help:
@python -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)

.PHONY: clean
clean: clean-build clean-pyc clean-test ## Remove all build, test, coverage and Python artifacts
clean: clean-build clean-pyc clean-test clean-docs ## Remove all build, test, coverage, docs and Python artifacts

.PHONY: clean-build
clean-build: ## Remove build artifacts.
Expand All @@ -51,6 +51,10 @@ clean-test: ## Remove test and coverage artifacts.
rm -f .coverage
rm -fr htmlcov/

.PHONY: clean-docs
clean-docs: ## Remove files in docs/_build
$(MAKE) -C docs clean

.PHONY: lint
lint: ## Check style with flake8.
tox -e lint
Expand All @@ -72,11 +76,10 @@ coverage: ## Check code coverage quickly with the default Python.
$(BROWSER) htmlcov/index.html

.PHONY: docs
docs: ## Generate Sphinx HTML documentation, including API docs.
docs: clean-docs ## Generate Sphinx HTML documentation, including API docs.
rm -f docs/clustercron.rst
rm -f docs/modules.rst
sphinx-apidoc -o docs/ src/clustercron
$(MAKE) -C docs clean
$(MAKE) -C docs html
$(BROWSER) docs/_build/html/index.html

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ Supported load balancers (till now):
:alt: Documentation Status
:target: https://clustercron.readthedocs.io/en/latest/

.. |pre-commit| image:: https://results.pre-commit.ci/badge/github/maartenq/clustercron/master.svg
.. |pre-commit| image:: https://results.pre-commit.ci/badge/github/maartenq/clustercron/main.svg
:alt: pre-commit.ci status
:target: https://results.pre-commit.ci/latest/github/maartenq/clustercron/master
:target: https://results.pre-commit.ci/latest/github/maartenq/clustercron/main

.. |workflow-ci| image:: https://github.com/maartenq/clustercron/workflows/ci/badge.svg?branch=main
:alt: CI status
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = clustercron
version = 0.6.11
version = 0.6.12
description = Cron job wrapper that ensures a script gets run from one node in the cluster.
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand All @@ -25,7 +25,7 @@ classifiers =
keywords = clustercron
project_urls =
Bug Tracker = https://github.com/maartenq/clustercron/issues
Changelog = https://github.com/maartenq/clustercron/blob/master/HISTORY.rst
Changelog = https://github.com/maartenq/clustercron/blob/main/HISTORY.rst

[options]
packages = find:
Expand Down
2 changes: 1 addition & 1 deletion src/clustercron/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

__author__ = 'Maarten'
__email__ = 'ikmaarten@gmail.com'
__version__ = '0.6.11'
__version__ = '0.6.12'