Skip to content

Commit

Permalink
Bump version from 2024.1 to 2024.2 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
anze3db committed Jan 13, 2024
1 parent 07e52fb commit 2a8b1e3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "selenium-testing-library"
version = "2024.1"
version = "2024.2"
description = "A Python Selenium library inspired by the Testing Library"
readme = "README.md"
license = "MIT"
Expand Down Expand Up @@ -44,7 +44,7 @@ requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"

[tool.bumpver]
current_version = "2024.1"
current_version = "2024.2"
version_pattern = "YYYY.INC1"
commit_message = "Bump version from {old_version} to {new_version} 🚀"
commit = true
Expand Down
2 changes: 1 addition & 1 deletion selenium_testing_library/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .screen import * # noqa: F403

__version__ = "2024.1"
__version__ = "2024.2"
2 changes: 1 addition & 1 deletion tests/test_selenium_testing_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


def test_version():
assert __version__ == "2024.1"
assert __version__ == "2024.2"


@pytest.fixture()
Expand Down

0 comments on commit 2a8b1e3

Please sign in to comment.