From 5bd0d366891a130ff140739261936144514f1536 Mon Sep 17 00:00:00 2001 From: Bauke Date: Sun, 25 Sep 2022 23:44:31 +0200 Subject: [PATCH] Version 0.1.2! --- opyml/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/opyml/__init__.py b/opyml/__init__.py index 95db13c..cf27634 100644 --- a/opyml/__init__.py +++ b/opyml/__init__.py @@ -7,7 +7,7 @@ from .head import Head from .opml import OPML from .outline import Outline -__version__ = "0.1.1" +__version__ = "0.1.2" # Export everything at the top-level. __all__ = [ diff --git a/pyproject.toml b/pyproject.toml index 244cbcc..7e947a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ name = "opyml" description = "OPML library for Python." repository = "https://git.bauke.xyz/Holllo/opyml" license = "MIT OR Apache-2.0" -version = "0.1.1" +version = "0.1.2" authors = ["Holllo "] readme = "README.md"