Skip to content

Commit

Permalink
Merge branch 'release-v0.6.1' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
fedejaure committed Feb 2, 2022
2 parents 24deabb + df56663 commit dde3e68
Show file tree
Hide file tree
Showing 9 changed files with 133 additions and 115 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = False
current_version = 0.6.0
current_version = 0.6.1

[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Run pre-commit
run: pre-commit run --all-files

- uses: peter-evans/create-pull-request@v3.12.0
- uses: peter-evans/create-pull-request@v3.12.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: chore-update-pre-commit-hooks
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
poetry build --ansi
- name: Publish package on PyPI
uses: pypa/gh-action-pypi-publish@v1.4.2
uses: pypa/gh-action-pypi-publish@v1.5.0
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}

- name: Publish package on TestPyPI
uses: pypa/gh-action-pypi-publish@v1.4.2
uses: pypa/gh-action-pypi-publish@v1.5.0
with:
user: __token__
password: ${{ secrets.TEST_PYPI_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repos:
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 21.12b0
rev: 22.1.0
hooks:
- id: black
- repo: local
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.1] - 2022-02-02
### Changed
- Update dependencies.

## [0.6.0] - 2022-01-08
### Changed
- Update dependencies.
Expand Down Expand Up @@ -49,7 +53,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- First release on PyPI.

[Unreleased]: https://github.com/fedejaure/mdns-beacon/compare/v0.6.0...develop
[Unreleased]: https://github.com/fedejaure/mdns-beacon/compare/v0.6.1...develop
[0.6.1]: https://github.com/fedejaure/mdns-beacon/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/fedejaure/mdns-beacon/compare/v0.5.0...v0.6.0
[0.5.0]: https://github.com/fedejaure/mdns-beacon/compare/v0.4.2...v0.5.0
[0.4.2]: https://github.com/fedejaure/mdns-beacon/compare/v0.4.1...v0.4.2
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sphinx==4.3.2
sphinx==4.4.0
recommonmark==0.7.1
201 changes: 107 additions & 94 deletions poetry.lock

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mdns-beacon"
version = "0.6.0"
version = "0.6.1"
description = "Multicast DNS (mDNS) Beacon to announce multiple CNAME aliases across your local network."
authors = ["Federico Jaureguialzo <fedejaure@gmail.com>"]

Expand Down Expand Up @@ -33,44 +33,44 @@ mdns-beacon = 'mdns_beacon.cli.main:main'
[tool.poetry.dependencies]
python = "<3.11,>=3.7"
click = "^8.0.3"
zeroconf = "^0.38.1"
rich = "^10.16.2"
zeroconf = "^0.38.3"
rich = "^11.1.0"
python-slugify = "^5.0.2"
typing-extensions = "^4.0.1"
click-option-group = "^0.5.3"


[tool.poetry.dev-dependencies]
pre-commit = "^2.16.0"
pre-commit = "^2.17.0"
invoke = "^1.6.0"
flake8 = "^3.9.2"
flakehell = "^0.9.0"
flake8-builtins = "^1.5.3"
flake8-blind-except = "^0.2.0"
flake8-logging-format = "^0.6.0"
flake8-bugbear = "^21.11.29"
flake8-bugbear = "^22.1.11"
flake8-annotations = "^2.7.0"
flake8-docstrings = "^1.6.0"
flake8-bandit = "^2.1.2"
flake8-broken-line = "^0.4.0"
darglint = "^1.8.1"
isort = "^5.10.1"
black = "^21.12b0"
black = "^22.1"
safety = "^1.10.3"
mypy = "^0.931"
sphinx = "^4.3.2"
sphinx = "^4.4.0"
recommonmark = "^0.7.1"
bump2version = "^1.0.1"
pytest = "^6.2.5"
xdoctest = "^0.15.10"
coverage = {version = "^6.2", extras = ["toml"]}
coverage = {version = "^6.3.1", extras = ["toml"]}
pytest-cov = "^3.0.0"
watchdog = {version = "^2.1.5", extras = ["watchmedo"]}
ipython = "^7.16"
pytest-asyncio = "^0.16.0"
pytest-mock = "^3.6.1"
ipython = "^7.31"
pytest-asyncio = "^0.17.2"
pytest-mock = "^3.7.0"
types-click = "^7.1.8"
types-python-slugify = "^5.0.2"
types-python-slugify = "^5.0.3"

[tool.coverage.paths]
source = ["src", "*/site-packages"]
Expand Down Expand Up @@ -125,7 +125,7 @@ known_local_folder = ["helpers"]

[tool.black]
line-length = 99
target-version = ["py36"]
target-version = ["py37"]

[tool.pytest.ini_options]
filterwarnings = [
Expand Down
2 changes: 1 addition & 1 deletion src/mdns_beacon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = """Federico Jaureguialzo"""
__email__ = "fedejaure@gmail.com"
__version__ = "0.6.0"
__version__ = "0.6.1"

0 comments on commit dde3e68

Please sign in to comment.