Skip to content

Commit 0e02d30

Browse files
authored
Merge pull request #127 from maartenq/devel
Devel
2 parents be30742 + 1997b05 commit 0e02d30

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.6.11
2+
current_version = 0.6.12
33
commit = True
44
tag = True
55

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44
History
55
=======
66

7+
0.6.12 (2021-09-10)
8+
-------------------
9+
10+
* Fix some shit from migrating master -> main
11+
* Makefile updates
12+
713
0.6.11 (2021-09-09)
814
-------------------
915

Makefile

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ help:
2929
@python -c "$$PRINT_HELP_PYSCRIPT" < $(MAKEFILE_LIST)
3030

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

3434
.PHONY: clean-build
3535
clean-build: ## Remove build artifacts.
@@ -51,6 +51,10 @@ clean-test: ## Remove test and coverage artifacts.
5151
rm -f .coverage
5252
rm -fr htmlcov/
5353

54+
.PHONY: clean-docs
55+
clean-docs: ## Remove files in docs/_build
56+
$(MAKE) -C docs clean
57+
5458
.PHONY: lint
5559
lint: ## Check style with flake8.
5660
tox -e lint
@@ -72,11 +76,10 @@ coverage: ## Check code coverage quickly with the default Python.
7276
$(BROWSER) htmlcov/index.html
7377

7478
.PHONY: docs
75-
docs: ## Generate Sphinx HTML documentation, including API docs.
79+
docs: clean-docs ## Generate Sphinx HTML documentation, including API docs.
7680
rm -f docs/clustercron.rst
7781
rm -f docs/modules.rst
7882
sphinx-apidoc -o docs/ src/clustercron
79-
$(MAKE) -C docs clean
8083
$(MAKE) -C docs html
8184
$(BROWSER) docs/_build/html/index.html
8285

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ Supported load balancers (till now):
2929
:alt: Documentation Status
3030
:target: https://clustercron.readthedocs.io/en/latest/
3131

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

3636
.. |workflow-ci| image:: https://github.com/maartenq/clustercron/workflows/ci/badge.svg?branch=main
3737
:alt: CI status

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = clustercron
3-
version = 0.6.11
3+
version = 0.6.12
44
description = Cron job wrapper that ensures a script gets run from one node in the cluster.
55
long_description = file: README.rst
66
long_description_content_type = text/x-rst
@@ -25,7 +25,7 @@ classifiers =
2525
keywords = clustercron
2626
project_urls =
2727
Bug Tracker = https://github.com/maartenq/clustercron/issues
28-
Changelog = https://github.com/maartenq/clustercron/blob/master/HISTORY.rst
28+
Changelog = https://github.com/maartenq/clustercron/blob/main/HISTORY.rst
2929

3030
[options]
3131
packages = find:

src/clustercron/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
__author__ = 'Maarten'
55
__email__ = 'ikmaarten@gmail.com'
6-
__version__ = '0.6.11'
6+
__version__ = '0.6.12'

0 commit comments

Comments
 (0)