diff --git a/release.sh b/release.sh index 077865ce..9d3e8189 100755 --- a/release.sh +++ b/release.sh @@ -28,7 +28,8 @@ The version numbers in the following files must be updated: 2. ui/src-tauri/Cargo.toml 3. ui/src-tauri/tauri.conf.json 4. ui/public/about.html - + 5. ui/package.json + EOF prompt "Did you update the version numbers?" diff --git a/src/service.rs b/src/service.rs index b4984f03..988eeb50 100644 --- a/src/service.rs +++ b/src/service.rs @@ -369,8 +369,9 @@ where /// Sends version to the client. #[inline] async fn version(request: Request) -> ServerResult { - Self::log(String::from("VERSION")).await?; + Self::log(String::from("REQUEST: version")).await?; let _ = request; + Self::log(format!("RESPONSE: {:?}", VERSION)).await?; Ok(Body::from_json(&VersionMessage::default())?.into()) } diff --git a/ui/package.json b/ui/package.json index e9859a45..7006c8f6 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "manta-signer-ui", - "version": "0.4.0", + "version": "0.5.0", "private": true, "dependencies": { "@tauri-apps/api": "^1.0.0-beta.8", @@ -43,4 +43,4 @@ "devDependencies": { "@tauri-apps/cli": "^1.0.0-beta.10" } -} +} \ No newline at end of file diff --git a/ui/public/about.html b/ui/public/about.html index 58df212d..df664507 100644 --- a/ui/public/about.html +++ b/ui/public/about.html @@ -41,11 +41,11 @@

Manta Signer

Version 0.5.0

Copyright © 2019-2021 Manta Network

- manta-network/manta-signer -

-
-

DOLPHIN TESTNET

+ manta-network/manta-signer +

+
+

DOLPHIN TESTNET

- + + \ No newline at end of file