From 8a8354682c6860cf621f2b7bdb10826b36d186e3 Mon Sep 17 00:00:00 2001 From: SaelKimberly Date: Sat, 20 Jan 2024 17:07:18 +0500 Subject: [PATCH] Prepare for minor release. Add __version__ to the package. --- pyproject.toml | 2 +- rxls/__init__.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c0b85ce..8a31746 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "rxls" -version = "0.2.0" +version = "0.2.1" description = "Reading both XLSX and XLSB files, fast and memory-safe, into PyArrow." authors = [ {name = "SaelKimberly", email = "sael.kimberly@yandex.ru"}, diff --git a/rxls/__init__.py b/rxls/__init__.py index e69de29..1337c21 100644 --- a/rxls/__init__.py +++ b/rxls/__init__.py @@ -0,0 +1,3 @@ +__all__ = ["__version__"] # noqa: D104 + +__version__ = "0.2.1"