Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.1.1 #293

Merged
merged 1 commit into from
Feb 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 2 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,8 @@
All notable changes to this project will be documented in this file.

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).
## Unreleased
### Added

### Changed

### Deprecated

### Removed

### Fixed
- [\#292](https://github.com/Manta-Network/manta-signer/pull/292) Fix linux signer not finding proving keys on system

### Security

## Unreleased
## [1.1.1] 2023-02-13
### Added

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

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

### Security
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "manta-signer"
edition = "2021"
version = "1.1.0"
version = "1.1.1"
authors = ["Manta Network <contact@manta.network>"]
readme = "README.md"
license-file = "LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "manta-signer-ui",
"version": "1.1.0",
"version": "1.1.1",
"private": true,
"dependencies": {
"@tauri-apps/api": "1.0.1",
Expand Down
2 changes: 1 addition & 1 deletion ui/public/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<main>
<img src="manta.png" />
<h3>Manta Signer</h3>
<p>Version 1.1.0</p>
<p>Version 1.1.1</p>
<p>Copyright © 2019-2022 Manta Network</p>
<p>
<a href="https://github.com/manta-network/manta-signer" target="_blank" rel="noreferrer">manta-network/manta-signer</a>
Expand Down
2 changes: 1 addition & 1 deletion ui/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "manta-signer-ui"
edition = "2018"
version = "1.1.0"
version = "1.1.1"
authors = ["Manta Network <contact@manta.network>"]
readme = "README.md"
license-file = "LICENSE"
Expand Down
2 changes: 1 addition & 1 deletion ui/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "manta-signer",
"version": "1.1.0"
"version": "1.1.1"
},
"build": {
"distDir": "../build",
Expand Down
6 changes: 3 additions & 3 deletions www/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ function App() {
onclick="window.fathom.trackGoal('KUBL03QU', 0);"
href={
os === 'Mac'
? 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.0/manta-signer-macos-latest_1.1.0-103_x64.dmg'
? 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.1/manta-signer-macos-latest_1.1.1-103_x64.dmg'
: os === 'Windows'
? 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.0/manta-signer-windows-2019_1.1.0_x64.msi'
: 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.0/manta-signer-ubuntu-18.04_1.1.0_amd64.deb'
? 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.1/manta-signer-windows-2019_1.1.1_x64.msi'
: 'https://github.com/Manta-Network/manta-signer/releases/download/v1.1.1/manta-signer-ubuntu-18.04_1.1.1_amd64.deb'
}
title={
os === 'Mac'
Expand Down