Skip to content

Commit 7583213

Browse files
authored
Release 1.1.1 (#293)
Signed-off-by: Apokalip <simeon@manta.network>
1 parent b69abf8 commit 7583213

File tree

7 files changed

+10
-22
lines changed

7 files changed

+10
-22
lines changed

CHANGELOG.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,8 @@
22
All notable changes to this project will be documented in this file.
33

44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5-
## Unreleased
6-
### Added
7-
8-
### Changed
9-
10-
### Deprecated
11-
12-
### Removed
135

14-
### Fixed
15-
- [\#292](https://github.com/Manta-Network/manta-signer/pull/292) Fix linux signer not finding proving keys on system
16-
17-
### Security
18-
19-
## Unreleased
6+
## [1.1.1] 2023-02-13
207
### Added
218

229
### Changed
@@ -26,6 +13,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
2613
### Removed
2714

2815
### Fixed
16+
- [\#292](https://github.com/Manta-Network/manta-signer/pull/292) Fix linux signer not finding proving keys on system
2917
- [\#289](https://github.com/Manta-Network/manta-signer/pull/289) Fix authorization state preventing consecutive transactions
3018

3119
### Security

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 = "1.1.0"
4+
version = "1.1.1"
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": "1.1.0",
3+
"version": "1.1.1",
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="manta.png" />
4040
<h3>Manta Signer</h3>
41-
<p>Version 1.1.0</p>
41+
<p>Version 1.1.1</p>
4242
<p>Copyright © 2019-2022 Manta Network</p>
4343
<p>
4444
<a href="https://github.com/manta-network/manta-signer" target="_blank" rel="noreferrer">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 = "1.1.0"
4+
version = "1.1.1"
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": "1.1.0"
4+
"version": "1.1.1"
55
},
66
"build": {
77
"distDir": "../build",

www/src/App.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@ function App() {
7878
onclick="window.fathom.trackGoal('KUBL03QU', 0);"
7979
href={
8080
os === 'Mac'
81-
? 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.0/manta-signer-macos-latest_1.1.0-103_x64.dmg'
81+
? 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.1/manta-signer-macos-latest_1.1.1-103_x64.dmg'
8282
: os === 'Windows'
83-
? 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.0/manta-signer-windows-2019_1.1.0_x64.msi'
84-
: 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.0/manta-signer-ubuntu-18.04_1.1.0_amd64.deb'
83+
? 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.1/manta-signer-windows-2019_1.1.1_x64.msi'
84+
: 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.1/manta-signer-ubuntu-18.04_1.1.1_amd64.deb'
8585
}
8686
title={
8787
os === 'Mac'

0 commit comments

Comments
 (0)