diff --git a/CHANGELOG.md b/CHANGELOG.md index b7c3ccb..5bbdc99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## v3.8.0 (2025-06-13) +## v3.8.1 (2025-06-25) ### Updates diff --git a/docs/source/conf.py b/docs/source/conf.py index 7a60863..f2c1d9a 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '' # The full version, including alpha/beta/rc tags -release = 'v3.8.0' +release = 'v3.8.1' # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 2ddd4a2..6e28676 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pystackql" -version = "3.8.0" +version = "3.8.1" description = "A Python interface for StackQL" readme = "README.rst" authors = [ @@ -33,8 +33,11 @@ dependencies = [ "tqdm>=4.61.0", ] +[tool.setuptools.packages.find] +include = ["pystackql", "pystackql.*"] + [tool.setuptools] -packages = ["pystackql"] +include-package-data = true [project.urls] Homepage = "https://github.com/stackql/pystackql"