From 729e207a7a625a06ab7b44c495130a6ea1a08586 Mon Sep 17 00:00:00 2001 From: Michael Platzer Date: Fri, 29 Nov 2024 20:09:22 +0100 Subject: [PATCH] fix docs repo url + bump to 1.3.0 --- mkdocs.yml | 4 ++-- pyproject.toml | 2 +- src/mostlyai/qa/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mkdocs.yml b/mkdocs.yml index 2fde09e..4dae934 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,6 +1,6 @@ site_name: mostlyai-qa -repo_url: "https://github.com/mostly-ai/mostly-python" -repo_name: "mostly-ai/mostly-python" +repo_url: "https://github.com/mostly-ai/mostlyai-qa" +repo_name: "mostly-ai/mostlyai-qa" theme: name: material logo: logo.png diff --git a/pyproject.toml b/pyproject.toml index fd66a5c..82d0e3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mostlyai-qa" -version = "1.2.2" +version = "1.3.0" description = "Quality assurance for synthetic data" readme = "README.md" license = "Apache License v2" diff --git a/src/mostlyai/qa/__init__.py b/src/mostlyai/qa/__init__.py index a8aa769..9d81351 100644 --- a/src/mostlyai/qa/__init__.py +++ b/src/mostlyai/qa/__init__.py @@ -20,7 +20,7 @@ from mostlyai.qa.report_from_statistics import report_from_statistics __all__ = ["report", "report_from_statistics"] -__version__ = "1.2.2" +__version__ = "1.3.0" os.environ["TOKENIZERS_PARALLELISM"] = "false" pd.set_option("future.no_silent_downcasting", True)