diff --git a/CHANGELOG.md b/CHANGELOG.md index cfee1c2..2c72880 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +# v1.4.0 + +- Adding UMA protocol support +- Adding some compliance-related client functions to support UMA + +# v1.3.0 + +- Add invoice expirySecs to the invoice creation functions +- Return Invoice object instead of InvoiceData so that you can store the Invoice ID if needed +- Lots of docs improvements +- Allow fetching transactions and invoices for a wallet tied to the current account. + # v1.2.0 - Adding 2 new functions for test mode: diff --git a/lightspark/version.py b/lightspark/version.py index 67bc602..3e8d9f9 100644 --- a/lightspark/version.py +++ b/lightspark/version.py @@ -1 +1 @@ -__version__ = "1.3.0" +__version__ = "1.4.0" diff --git a/setup.cfg b/setup.cfg index 47de625..5473df2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -21,4 +21,6 @@ install_requires = requests [options.packages.find] -include = lightspark* +include = + lightspark* + uma*