diff --git a/pyproject.toml b/pyproject.toml index cf0eddc..e576930 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "sphinx-docsearch" -version = "0.2.0" +version = "0.2.0b1" description = "A Sphinx extension for replacing the built-in search with Algolia DocSearch" readme = "README.md" authors = [ diff --git a/tests/test_config.py b/tests/test_config.py index 9baa365..c9411d5 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -12,7 +12,7 @@ def test_returns_version() -> None: """It returns the correct version.""" - assert sphinx_docsearch.__version__ == "0.2.0" + assert sphinx_docsearch.__version__ == "0.2.0b1" @pytest.mark.sphinx("html", confoverrides={"extensions": ["sphinx_docsearch"]})