Release 0.15.2 (#1418)

* Check for authentication obj before delete operation #1415 (#1416)

Add Github Actions with Buildx for Docker publish
This commit is contained in:
ShahanaFarooqui 2024-06-21 20:09:52 -07:00
parent 5a6b5f2cae
commit d51929a4b7
5 changed files with 1247 additions and 1336 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

2575
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "rtl",
"version": "0.15.1-beta",
"version": "0.15.2-beta",
"license": "MIT",
"type": "module",
"scripts": {

View File

@ -15,7 +15,7 @@ export const HOUR_SECONDS = 3600;
export const DEFAULT_INVOICE_EXPIRY = HOUR_SECONDS * 24 * 7;
export const VERSION = '0.15.1-beta';
export const VERSION = '0.15.2-beta';
export const API_URL = isDevMode() ? 'http://localhost:3000/rtl/api' : './api';