diff --git a/CHANGELOG.md b/CHANGELOG.md index ddea461..ed124e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +* v0.1.3: + * Encode URI components in the same way as JavaScript's encodeURIComponent. This ensures that querystrings with special characters are encoded in the same way on the device as the lnurl-node server. * v0.1.2: * Follow standardization of query stringification as done by the lnurl-node module. The query object will now be sorted alphabetically by key before being stringified and used as the payload when signing. * v0.1.1: diff --git a/library.json b/library.json index 8936470..50c2256 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "lnurl", - "version": "0.1.2", + "version": "0.1.3", "description": "lnurl library for platformio", "keywords": "lnurl, bitcoin, lightning network", "repository": { diff --git a/package-lock.json b/package-lock.json index 04d3803..fc49432 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "lnurl-platformio", - "version": "0.1.2", + "version": "0.1.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 43541ff..fb588c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lnurl-platformio", - "version": "0.1.2", + "version": "0.1.3", "private": true, "description": "Implementation of [lnurl](https://github.com/btcontract/lnurl-rfc) in C++ for [PlatformIO](https://platformio.org/).", "main": null,