Skip to content
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
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[project]
name = "zeroconf"
version = "1.0.0"
version = "0.148.0"
license = "LGPL-2.1-or-later"
description = "A pure python implementation of multicast DNS service discovery"
readme = "README.rst"
Expand Down Expand Up @@ -58,6 +58,7 @@ version_variables = [
]
build_command = "pip install poetry && poetry build"
tag_format = "{version}"
allow_zero_version = true

[tool.semantic_release.changelog]
exclude_commit_patterns = [
Expand All @@ -71,8 +72,11 @@ keep_trailing_newline = true
[tool.semantic_release.branches.master]
match = "master"

[tool.semantic_release.branches."release-0.x"]
match = "release-0.x"

[tool.semantic_release.branches.noop]
match = "(?!master$)"
match = "(?!(master|release-0.x)$)"
prerelease = true

[tool.poetry.dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/zeroconf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@

__author__ = "Paul Scott-Murphy, William McBrine"
__maintainer__ = "Jakub Stasiak <[email protected]>"
__version__ = "1.0.0"
__version__ = "0.148.0"
__license__ = "LGPL"


Expand Down
Loading