Skip to content

Commit

Permalink
Update to version 0.6.2 and initiates migration
Browse files Browse the repository at this point in the history
  • Loading branch information
howardwu committed Mar 14, 2020
1 parent 42f4fd3 commit 8f75d01
Show file tree
Hide file tree
Showing 17 changed files with 62 additions and 68 deletions.
4 changes: 0 additions & 4 deletions .github/FUNDING.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@ deploy:
on:
condition: $DEPLOY = 1
tags: true
repo: ArgusHQ/wagyu
repo: AleoHQ/wagyu
provider: releases
skip_cleanup: true
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "wagyu"
version = "0.6.1"
version = "0.6.2"
authors = [
"Collin Chin",
"Raymond Chu",
"Ali Mousa",
"Howard Wu"
]
description = "A command-line tool to generate cryptocurrency wallets"
homepage = "https://github.com/ArgusHQ/wagyu"
repository = "https://github.com/ArgusHQ/wagyu"
homepage = "https://github.com/AleoHQ/wagyu"
repository = "https://github.com/AleoHQ/wagyu"
categories = ["command-line-utilities", "cryptocurrency"]
keywords = ["blockchain", "command-line", "crypto", "cryptocurrency", "wallet"]
readme = "README.md"
Expand All @@ -27,14 +27,14 @@ path = "wagyu/main.rs"
members = [ "bitcoin", "ethereum", "model", "monero", "zcash" ]

[badges]
travis-ci = { repository = "ArgusHQ/wagyu", branch = "master" }
travis-ci = { repository = "AleoHQ/wagyu", branch = "master" }

[dependencies]
wagyu-bitcoin = { path = "./bitcoin", version = "0.6.1" }
wagyu-ethereum = { path = "./ethereum", version = "0.6.1" }
wagyu-model = { path = "./model", version = "0.6.1" }
wagyu-monero = { path = "./monero", version = "0.6.1" }
wagyu-zcash = { path = "./zcash", version = "0.6.1" }
wagyu-bitcoin = { path = "./bitcoin", version = "0.6.2" }
wagyu-ethereum = { path = "./ethereum", version = "0.6.2" }
wagyu-model = { path = "./model", version = "0.6.2" }
wagyu-monero = { path = "./monero", version = "0.6.2" }
wagyu-zcash = { path = "./zcash", version = "0.6.2" }

arrayvec = { version = "0.5.1" }
base58 = { version = "0.1" }
Expand Down
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
</h1>
<p align="center">
<a href="https://crates.io/crates/wagyu"><img src="https://img.shields.io/crates/v/wagyu.svg?color=neon"></a>
<a href="https://travis-ci.com/ArgusHQ/wagyu"><img src="https://img.shields.io/travis/com/ArgusHQ/wagyu/v0.6.1.svg"></a>
<a href="https://codecov.io/gh/ArgusHQ/wagyu"><img src="https://img.shields.io/codecov/c/github/ArgusHQ/wagyu.svg"></a>
<a href="./AUTHORS"><img src="https://img.shields.io/badge/authors-Argus-orange.svg"></a>
<a href="https://travis-ci.com/AleoHQ/wagyu"><img src="https://img.shields.io/travis/com/AleoHQ/wagyu/v0.6.2.svg"></a>
<a href="https://codecov.io/gh/AleoHQ/wagyu"><img src="https://img.shields.io/codecov/c/github/AleoHQ/wagyu.svg"></a>
<a href="./AUTHORS"><img src="https://img.shields.io/badge/authors-Aleo-orange.svg"></a>
<a href="./LICENSE-MIT"><img src="https://img.shields.io/badge/license-MIT/Apache--2.0-blue.svg"></a>
</p>

Expand Down Expand Up @@ -85,7 +85,7 @@ Alternatively, you can install `wagyu` by building from the source code as follo

```bash
# Download the source code
git clone https://github.com/ArgusHQ/wagyu
git clone https://github.com/AleoHQ/wagyu
cd wagyu

# Build in release mode
Expand Down Expand Up @@ -507,11 +507,9 @@ OPTIONS:
--version <version> Specify a Zcash transaction version [possible values: sapling]
```

#### 3.5.4 Transaction Notes:
#### 3.5.4 Transaction Remarks

- The Wagyu CLI operates offline with no chain state, and thus does not support Monero transactions or Zcash Sapling spends.
- Zcash Sapling outputs are supported.
-
`wagyu` CLI operates offline without chain state, and thus cannot immediately craft Monero transactions or Zcash Sapling spends (Zcash Sapling outputs are supported).

## 4. License

Expand Down
10 changes: 5 additions & 5 deletions bitcoin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[package]
name = "wagyu-bitcoin"
version = "0.6.1"
version = "0.6.2"
authors = [
"Collin Chin",
"Raymond Chu",
"Ali Mousa",
"Howard Wu"
]
description = "A library for generating Bitcoin wallets"
homepage = "https://github.com/ArgusHQ/wagyu"
repository = "https://github.com/ArgusHQ/wagyu/tree/v0.6.1/bitcoin"
homepage = "https://github.com/AleoHQ/wagyu"
repository = "https://github.com/AleoHQ/wagyu/tree/v0.6.2/bitcoin"
categories = ["command-line-utilities", "cryptocurrency"]
keywords = ["bitcoin", "blockchain", "crypto", "cryptocurrency", "wallet"]
readme = "README.md"
license = "MIT/Apache-2.0"
edition = "2018"

[dependencies]
wagyu-model = { path = "../model", version = "0.6.1" }
wagyu-model = { path = "../model", version = "0.6.2" }

base58 = { version = "0.1" }
bech32 = { version = "0.6.0" }
Expand All @@ -36,4 +36,4 @@ sha2 = { version = "0.8" }
tiny-keccak = { version = "1.4" }

[badges]
travis-ci = { repository = "ArgusHQ/wagyu", branch = "master" }
travis-ci = { repository = "AleoHQ/wagyu", branch = "master" }
2 changes: 1 addition & 1 deletion bitcoin/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# wagyu-bitcoin

[![Crates.io](https://img.shields.io/crates/v/wagyu-bitcoin.svg?color=neon)](https://crates.io/crates/wagyu-bitcoin)
[![Authors](https://img.shields.io/badge/authors-Argus-orange.svg)](../AUTHORS)
[![Authors](https://img.shields.io/badge/authors-Aleo-orange.svg)](../AUTHORS)
[![License](https://img.shields.io/badge/license-MIT/Apache--2.0-blue.svg)](./LICENSE-MIT)

## License
Expand Down
10 changes: 5 additions & 5 deletions ethereum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[package]
name = "wagyu-ethereum"
version = "0.6.1"
version = "0.6.2"
authors = [
"Collin Chin",
"Raymond Chu",
"Ali Mousa",
"Howard Wu"
]
description = "A library for generating Ethereum wallets"
homepage = "https://github.com/ArgusHQ/wagyu"
repository = "https://github.com/ArgusHQ/wagyu/tree/v0.6.1/ethereum"
homepage = "https://github.com/AleoHQ/wagyu"
repository = "https://github.com/AleoHQ/wagyu/tree/v0.6.2/ethereum"
categories = ["command-line-utilities", "cryptocurrency"]
keywords = ["blockchain", "crypto", "cryptocurrency", "ethereum", "wallet"]
readme = "README.md"
license = "MIT/Apache-2.0"
edition = "2018"

[dependencies]
wagyu-model = { path = "../model", version = "0.6.1" }
wagyu-model = { path = "../model", version = "0.6.2" }

base58 = { version = "0.1" }
bitvec = { version = "0.15.2" }
Expand All @@ -35,4 +35,4 @@ sha2 = { version = "0.8" }
tiny-keccak = { version = "1.4" }

[badges]
travis-ci = { repository = "ArgusHQ/wagyu", branch = "master" }
travis-ci = { repository = "AleoHQ/wagyu", branch = "master" }
2 changes: 1 addition & 1 deletion ethereum/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# wagyu-ethereum

[![Crates.io](https://img.shields.io/crates/v/wagyu-ethereum.svg?color=neon)](https://crates.io/crates/wagyu-ethereum)
[![Authors](https://img.shields.io/badge/authors-Argus-orange.svg)](../AUTHORS)
[![Authors](https://img.shields.io/badge/authors-Aleo-orange.svg)](../AUTHORS)
[![License](https://img.shields.io/badge/license-MIT/Apache--2.0-blue.svg)](./LICENSE-MIT)

## License
Expand Down
8 changes: 4 additions & 4 deletions model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "wagyu-model"
version = "0.6.1"
version = "0.6.2"
authors = [
"Collin Chin",
"Raymond Chu",
"Ali Mousa",
"Howard Wu"
]
description = "A generic model for cryptocurrency wallets"
homepage = "https://github.com/ArgusHQ/wagyu"
repository = "https://github.com/ArgusHQ/wagyu/tree/v0.6.1/model"
homepage = "https://github.com/AleoHQ/wagyu"
repository = "https://github.com/AleoHQ/wagyu/tree/v0.6.2/model"
categories = ["command-line-utilities", "cryptocurrency"]
keywords = ["bitcoin", "blockchain", "cryptocurrency", "ethereum", "wallet"]
readme = "README.md"
Expand All @@ -36,4 +36,4 @@ sha2 = { version = "0.8" }
uint = { version = "0.7.1" }

[badges]
travis-ci = { repository = "ArgusHQ/wagyu", branch = "master" }
travis-ci = { repository = "AleoHQ/wagyu", branch = "master" }
2 changes: 1 addition & 1 deletion model/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# wagyu-model

[![Crates.io](https://img.shields.io/crates/v/wagyu-model.svg?color=neon)](https://crates.io/crates/wagyu-model)
[![Authors](https://img.shields.io/badge/authors-Argus-orange.svg)](../AUTHORS)
[![Authors](https://img.shields.io/badge/authors-Aleo-orange.svg)](../AUTHORS)
[![License](https://img.shields.io/badge/license-MIT/Apache--2.0-blue.svg)](./LICENSE-MIT)

## License
Expand Down
10 changes: 5 additions & 5 deletions monero/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "wagyu-monero"
version = "0.6.1"
version = "0.6.2"
authors = [
"Collin Chin",
"Raymond Chu",
"Ali Mousa",
"Howard Wu"
]
description = "A library for generating Monero wallets"
homepage = "https://github.com/ArgusHQ/wagyu"
repository = "https://github.com/ArgusHQ/wagyu/tree/v0.6.1/monero"
homepage = "https://github.com/AleoHQ/wagyu"
repository = "https://github.com/AleoHQ/wagyu/tree/v0.6.2/monero"
categories = ["command-line-utilities", "cryptocurrency"]
keywords = ["blockchain", "crypto", "cryptocurrency", "monero", "wallet"]
readme = "README.md"
Expand All @@ -18,7 +18,7 @@ edition = "2018"
build = "build.rs"

[dependencies]
wagyu-model = { path = "../model", version = "0.6.1" }
wagyu-model = { path = "../model", version = "0.6.2" }

base58-monero = { version = "0.1.1" }
crc = { version = "1.8.1" }
Expand All @@ -35,4 +35,4 @@ tiny-keccak = { version = "1.4" }
cmake = { version = "0.1" }

[badges]
travis-ci = { repository = "ArgusHQ/wagyu", branch = "master" }
travis-ci = { repository = "AleoHQ/wagyu", branch = "master" }
2 changes: 1 addition & 1 deletion monero/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# wagyu-monero

[![Crates.io](https://img.shields.io/crates/v/wagyu-monero.svg?color=neon)](https://crates.io/crates/wagyu-monero)
[![Authors](https://img.shields.io/badge/authors-Argus-orange.svg)](../AUTHORS)
[![Authors](https://img.shields.io/badge/authors-Aleo-orange.svg)](../AUTHORS)
[![License](https://img.shields.io/badge/license-MIT/Apache--2.0-blue.svg)](./LICENSE-MIT)

## License
Expand Down
2 changes: 1 addition & 1 deletion wagyu/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fn main() -> Result<(), CLIError> {
let arguments = App::new("wagyu")
.version("v0.6.0")
.about("Generate a wallet for Bitcoin, Ethereum, Monero, and Zcash")
.author("Argus <[email protected]>")
.author("Aleo <[email protected]>")
.settings(&[
AppSettings::ColoredHelp,
AppSettings::DisableHelpSubcommand,
Expand Down
10 changes: 5 additions & 5 deletions zcash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
[package]
name = "wagyu-zcash"
version = "0.6.1"
version = "0.6.2"
authors = [
"Collin Chin",
"Raymond Chu",
"Ali Mousa",
"Howard Wu"
]
description = "A library for generating Zcash wallets"
homepage = "https://github.com/ArgusHQ/wagyu"
repository = "https://github.com/ArgusHQ/wagyu/tree/v0.6.1/zcash"
homepage = "https://github.com/AleoHQ/wagyu"
repository = "https://github.com/AleoHQ/wagyu/tree/v0.6.2/zcash"
categories = ["command-line-utilities", "cryptocurrency"]
keywords = ["blockchain", "crypto", "cryptocurrency", "wallet", "zcash"]
readme = "README.md"
license = "MIT/Apache-2.0"
edition = "2018"

[dependencies]
wagyu-model = { path = "../model", version = "0.6.1" }
wagyu-model = { path = "../model", version = "0.6.2" }

bellman = { git = "https://github.com/zcash/librustzcash/", rev = "2b6fbfd" }
ff = { git = "https://github.com/zcash/librustzcash", rev = "2b6fbfd" }
Expand Down Expand Up @@ -53,4 +53,4 @@ hex-literal = { version = "0.2" }
rand_xorshift = { version = "0.2" }

[badges]
travis-ci = { repository = "ArgusHQ/wagyu", branch = "master" }
travis-ci = { repository = "AleoHQ/wagyu", branch = "master" }
2 changes: 1 addition & 1 deletion zcash/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# wagyu-zcash

[![Crates.io](https://img.shields.io/crates/v/wagyu-zcash.svg?color=neon)](https://crates.io/crates/wagyu-zcash)
[![Authors](https://img.shields.io/badge/authors-Argus-orange.svg)](../AUTHORS)
[![Authors](https://img.shields.io/badge/authors-Aleo-orange.svg)](../AUTHORS)
[![License](https://img.shields.io/badge/license-MIT/Apache--2.0-blue.svg)](./LICENSE-MIT)

## License
Expand Down
Loading

0 comments on commit 8f75d01

Please sign in to comment.