diff --git a/README.md b/README.md index 54be93a..208220a 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ If you would like to contribute, please feel free to make a pull request. ## Library Installation -current release is 0.0.8, tested to LNBits 0.10.9 +current release is 0.0.9, tested to LNBits 0.11.2 ``` pip install pylnbits diff --git a/docs/how-to-guides.md b/docs/how-to-guides.md index cabe6b3..b498a94 100644 --- a/docs/how-to-guides.md +++ b/docs/how-to-guides.md @@ -26,7 +26,7 @@ pip install -e . ``` ### Release Note -Current pylnbits release is **0.0.8** +Current pylnbits release is **0.0.9** ###### Resolved Bugs - UnboundLocalError when config_file is None diff --git a/pyproject.toml b/pyproject.toml index 9e39a24..719376c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pylnbits" -version = "0.0.8" +version = "0.0.9" description = "Python library for LNBits." authors = ["bitkarrot "] license = "MIT" diff --git a/setup.py b/setup.py index 700d746..356ff80 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ if __name__ == "__main__": # setuptools.setup() - VERSION = "0.0.8" + VERSION = "0.0.9" with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read()