Skip to content

Commit

Permalink
pytest-lsp: Set a preview version number
Browse files Browse the repository at this point in the history
  • Loading branch information
alcarney committed Aug 26, 2024
1 parent ded1250 commit 09e5e65
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/pytest-lsp/hatch.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ packages = ["pytest_lsp"]
dependencies = ["pytest-asyncio"]

[[envs.hatch-test.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12"]
python = ["3.9", "3.10", "3.11", "3.12"]
pytest = ["7", "8"]

[envs.hatch-test.overrides]
Expand Down
2 changes: 1 addition & 1 deletion lib/pytest-lsp/pytest_lsp/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from typing import Any


__version__ = "0.4.2"
__version__ = "1.0.0b0"
logger = logging.getLogger(__name__)


Expand Down
7 changes: 4 additions & 3 deletions scripts/make_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,10 @@ class Component(TypedDict):
for c in [
Component(
name="pytest-lsp",
bump_breaking="major",
bump_minor="minor",
bump_patch="patch",
# Everything is a beta version bump until we make a proper release
bump_breaking="b",
bump_minor="b",
bump_patch="b",
commit_prefix="pytest-lsp v",
src="lib/pytest-lsp",
tag_prefix="pytest-lsp-v",
Expand Down

0 comments on commit 09e5e65

Please sign in to comment.