diff --git a/CHANGELOG.md b/CHANGELOG.md index f2f446a..cfee1c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +# v1.2.0 + +- Adding 2 new functions for test mode: + - `create_test_mode_invoice` which can give you an encoded lightning invoice that can be paid from your test wallet via the payInvoice function + - `create_test_mode_payment` to pay an invoice created from your test wallet via createInvoice + # v1.1.0 - Adding the ability to manage wallets tied to the current account. See `Account.get_wallets()` and the `Wallet` object. diff --git a/README.md b/README.md index 1092cf8..d06b43e 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Lightspark Python SDK - v1.1.0 +# Lightspark Python SDK The Lightspark Python SDK provides a convenient way to interact with the Lightspark services from applications written in the Python language. diff --git a/lightspark/version.py b/lightspark/version.py index 6849410..c68196d 100644 --- a/lightspark/version.py +++ b/lightspark/version.py @@ -1 +1 @@ -__version__ = "1.1.0" +__version__ = "1.2.0"