From cff4d818d4bce8c0adcbceef514cea838c00cc8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=BCndler?= Date: Tue, 2 Jan 2024 11:45:37 +0100 Subject: [PATCH] Major version bump --- pyproject.toml | 2 +- uplc/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 954e35c..2e12861 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "uplc" -version = "0.6.7" +version = "1.0.0" description = "Python implementation of untyped plutus language core" authors = ["nielstron "] license = "MIT" diff --git a/uplc/__init__.py b/uplc/__init__.py index bf8bec8..3bddca8 100644 --- a/uplc/__init__.py +++ b/uplc/__init__.py @@ -5,7 +5,7 @@ import logging -__version__ = "0.6.7" +__version__ = "1.0.0" __author__ = "nielstron" __author_email__ = "n.muendler@web.de" __copyright__ = "Copyright (C) 2023 nielstron"