Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d548886

Browse files
committedApr 11, 2024
Bump version from 2024.2 to 2024.3 🚀
1 parent f3270be commit d548886

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "selenium-testing-library"
3-
version = "2024.2"
3+
version = "2024.3"
44
description = "A Python Selenium library inspired by the Testing Library"
55
readme = "README.md"
66
license = "MIT"
@@ -44,7 +44,7 @@ requires = ["poetry-core>=1.0.0"]
4444
build-backend = "poetry.core.masonry.api"
4545

4646
[tool.bumpver]
47-
current_version = "2024.2"
47+
current_version = "2024.3"
4848
version_pattern = "YYYY.INC1"
4949
commit_message = "Bump version from {old_version} to {new_version} 🚀"
5050
commit = true

‎selenium_testing_library/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .screen import * # noqa: F403
22

3-
__version__ = "2024.2"
3+
__version__ = "2024.3"

‎tests/test_selenium_testing_library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
def test_version():
17-
assert __version__ == "2024.2"
17+
assert __version__ == "2024.3"
1818

1919

2020
@pytest.fixture()

0 commit comments

Comments
 (0)
Please sign in to comment.