From d7cc555e1579009818df3a4f87e012c1972ee18b Mon Sep 17 00:00:00 2001 From: Diego Alonso Alvarez Date: Tue, 17 Dec 2024 13:02:53 +0000 Subject: [PATCH] :bookmark: Update version to 0.2.3. --- csvy/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/csvy/__init__.py b/csvy/__init__.py index b053cda..52d6d40 100644 --- a/csvy/__init__.py +++ b/csvy/__init__.py @@ -1,6 +1,6 @@ """Python reader/writer for CSV files with YAML header information.""" -__version__ = "0.2.2" +__version__ = "0.2.3" from .readers import ( # noqa: F401 read_header, read_metadata, diff --git a/pyproject.toml b/pyproject.toml index 92bb4fc..019b0b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycsvy" -version = "0.2.2" +version = "0.2.3" description = "Python reader/writer for CSV files with YAML header information." authors = ["Diego Alonso Álvarez "] license = "BSD-3-Clause"