Skip to content

Commit 93e334d

Browse files
Release v0.8.0 (#182)
* update changelog * update versions
1 parent eaa1851 commit 93e334d

8 files changed

Lines changed: 15 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
## [Unreleased]
77

88
### Added
9-
- [\#180](https://github.com/Manta-Network/manta-signer/pull/180) Add support for mutliple CORS allowed origins
109

1110
### Changed
1211

@@ -18,6 +17,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1817

1918
### Security
2019

20+
## [0.8.0] 2022-10-05
21+
22+
### Added
23+
- [\#180](https://github.com/Manta-Network/manta-signer/pull/180) Add support for mutliple CORS allowed origins
24+
2125
## [0.7.4] - 2022-09-27
2226
### Added
2327
- [\#154](https://github.com/Manta-Network/manta-signer/pull/154) Add storage abstractions and add server storage hook

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "manta-signer"
33
edition = "2021"
4-
version = "0.7.4"
4+
version = "0.8.0"
55
authors = ["Manta Network <contact@manta.network>"]
66
readme = "README.md"
77
license-file = "LICENSE"

ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "manta-signer-ui",
3-
"version": "0.7.4",
3+
"version": "0.8.0",
44
"private": true,
55
"dependencies": {
66
"@tauri-apps/api": "1.0.1",

ui/public/about.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<main>
3939
<img src="Square89x89Logo.png" />
4040
<h3>Manta Signer</h3>
41-
<p>Version 0.7.4</p>
41+
<p>Version 0.8.0</p>
4242
<p>Copyright © 2019-2022 Manta Network</p>
4343
<p>
4444
<a href="https://github.com/manta-network/manta-signer">manta-network/manta-signer</a>

ui/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "manta-signer-ui"
33
edition = "2018"
4-
version = "0.7.4"
4+
version = "0.8.0"
55
authors = ["Manta Network <contact@manta.network>"]
66
readme = "README.md"
77
license-file = "LICENSE"

ui/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"package": {
33
"productName": "manta-signer",
4-
"version": "0.7.4"
4+
"version": "0.8.0"
55
},
66
"build": {
77
"distDir": "../build",

www/src/App.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ function App() {
7676
className='px-6 py-4 text-white text-2xl bg-button rounded-full mt-12 cursor-pointer'
7777
href={
7878
os === 'Mac'
79-
? 'https://github.com/Manta-Network/manta-signer/releases/download/v0.7.4/manta-signer-macos-latest_0.7.4-103_x64.dmg'
79+
? 'https://github.com/Manta-Network/manta-signer/releases/download/v0.8.0/manta-signer-macos-latest_0.8.0-103_x64.dmg'
8080
: os === 'Windows'
81-
? 'https://github.com/Manta-Network/manta-signer/releases/download/v0.7.4/manta-signer-windows-2019_0.7.4_x64.msi'
82-
: 'https://github.com/Manta-Network/manta-signer/releases/download/v0.7.4/manta-signer-ubuntu-18.04_0.7.4_amd64.deb'
81+
? 'https://github.com/Manta-Network/manta-signer/releases/download/v0.8.0/manta-signer-windows-2019_0.8.0_x64.msi'
82+
: 'https://github.com/Manta-Network/manta-signer/releases/download/v0.8.0/manta-signer-ubuntu-18.04_0.8.0_amd64.deb'
8383
}
8484
title={
8585
os === 'Mac'

0 commit comments

Comments
 (0)