Skip to content

Commit

Permalink
Bump the package version
Browse files Browse the repository at this point in the history
- fixed versioning and name confusion in poetry
- add ledger library
  • Loading branch information
nielstron committed Mar 14, 2023
1 parent 3185863 commit 2cdf329
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 7 additions & 0 deletions eopsin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,10 @@
from compiler import *
except ImportError as e:
warnings.warn(ImportWarning(e))

__version__ = "0.9.12"
__author__ = "nielstron"
__author_email__ = "n.muendler@web.de"
__copyright__ = "Copyright (C) 2023 nielstron"
__license__ = "MIT"
__url__ = "https://github.com/imperatorlang/eopsin"
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "eopsin-lang"
version = "0.9.11"
version = "0.9.12"
description = "A simple pythonic programming language for Smart Contracts on Cardano"
authors = ["nielstron <n.muendler@web.de>"]
license = "MIT"
Expand Down Expand Up @@ -35,6 +35,8 @@ pytest = "^7.2.2"
[tool.poetry.scripts]
eopsin = "eopsin.__main__:main"

[tool.poetry_bumpversion.file."eopsin/__init__.py"]

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

0 comments on commit 2cdf329

Please sign in to comment.