From 205a4ede86a7a708ed7ef9d5497416be5be0944a Mon Sep 17 00:00:00 2001 From: Shantanu Jain Date: Thu, 26 Dec 2024 18:11:26 -0800 Subject: [PATCH] pyp: bump version --- pyp.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyp.py b/pyp.py index d654e26..f7a9c91 100644 --- a/pyp.py +++ b/pyp.py @@ -12,7 +12,7 @@ from typing import Any, Dict, Iterator, List, Optional, Set, Tuple, cast __all__ = ["pypprint"] -__version__ = "1.2.0" +__version__ = "1.3.0" def pypprint(*args, **kwargs): # type: ignore diff --git a/pyproject.toml b/pyproject.toml index 3e23c8f..647dda7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pypyp" -version = "1.2.0" +version = "1.3.0" authors = [{name = "Shantanu Jain"}, {email = "hauntsaninja@gmail.com"}] description = "Easily run Python at the shell! Magical, but never mysterious." readme = "README.md"