diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-10 20:55:53 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-10-21 13:25:22 +0200 |
| commit | 06c6ce9790ce2426cc91703ce5b1d03bfb4506d7 (patch) | |
| tree | e3efdb53bdb9b2bbd834df4ed5a6c6b1f2041954 | |
| parent | 7fb2fb878a6d7b6774af0b168ed6d0f229e5817e (diff) | |
fix(ui): Fix version number in package.json
This change fixes the version number in package.json which contained the
suffix "-rc1", which is apparently not supported by npm.
| -rw-r--r-- | opendc-web/opendc-web-ui/package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opendc-web/opendc-web-ui/package.json b/opendc-web/opendc-web-ui/package.json index 0531c648..c64a3c11 100644 --- a/opendc-web/opendc-web-ui/package.json +++ b/opendc-web/opendc-web-ui/package.json @@ -1,6 +1,6 @@ { "name": "opendc-frontend", - "version": "2.1-rc1", + "version": "2.1.0", "description": "The user-facing component of the OpenDC stack, allowing users to build and interact with their own (virtual) datacenters.", "keywords": [ "opendc", |
