From 2f4b47c13a33f65515765c5feedc0fadb6e86597 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Ortega=20Gonz=C3=A1lez?= Date: Sun, 13 Oct 2024 17:37:42 -0300 Subject: [PATCH] "Bump version to 0.2.25 in pyproject.toml and __init__.py" --- pyproject.toml | 2 +- rutificador/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ed13082..7155f6d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "rutificador" -version = "0.2.24" +version = "0.2.25" description = "Esta librería proporciona una implementación en Python para validar y formatear el Rol Único Tributario (RUT) utilizado en Chile." authors = ["Carlos Ortega González "] license = "MIT" diff --git a/rutificador/__init__.py b/rutificador/__init__.py index a241931..86b0caf 100644 --- a/rutificador/__init__.py +++ b/rutificador/__init__.py @@ -12,10 +12,10 @@ from typing import List -__version__ = "0.2.24" +__version__ = "0.2.25" __author__ = "Carlos Ortega González" __license__ = "MIT" from .main import Rut, RutDigitoVerificador, RutInvalidoError -__all__: List[str] = ["Rut", "RutDigitoVerificador", "RutInvalidoError"] \ No newline at end of file +__all__: List[str] = ["Rut", "RutDigitoVerificador", "RutInvalidoError"]