Skip to content

Commit

Permalink
Merge pull request #53 from rantan/bump_up_version
Browse files Browse the repository at this point in the history
Bump up version to 0.3.1
  • Loading branch information
Yamaguchi authored Feb 25, 2020
2 parents ee63f08 + d22a556 commit bd80264
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "tapyrus_signer"
version = "0.1.0"
version = "0.3.1"
authors = ["Kohei Taniguchi <kohei@chaintope.com>", "Yukishige Nakajo <nakajo@chaintope.com>"]
edition = "2018"

Expand Down
22 changes: 22 additions & 0 deletions doc/release-notes/release-notes-0.3.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Tapyrus Signer version 0.3.1 is now available for download at:
https://github.com/chaintope/tapyrus-signer/release/tag/v0.3.1/

Please report bugs using the issue tracker at github:
https://github.com/chaintope/tapyrus-signer/issues

Project source code is hosted at github; you can get
source-only tarballs/zipballs directly from there:
https://github.com/chaintope/tapyrus-signer/tarball/v0.3.1 # .tar.gz

0.3.1 change log
-------------------

*Daemonize*

* Make it possible to start as a daemon process. You can get init script in `contrib/init/tapyrus-signerd.init`

*Others*

* Includes some fixes and improvement of codes.


12 changes: 6 additions & 6 deletions doc/release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ This process assumes on Amazon Linux 2 environment. However it might work on any
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
$ source $HOME/.cargo/env
$ rustc --version
rustc 1.39.0 (4560ea788 2019-11-04)
rustc 1.41.0 (5e1a79984 2020-01-27)
```

#### Install Packages
Expand All @@ -66,7 +66,7 @@ $ cargo build --release

```
$ mkdir -p tapyrus-signer-${VERSION}-x86_64-px-linux-gnu/bin
$ cp target/release/node tapyrus-signer-${VERSION}-x86_64-px-linux-gnu/bin
$ cp target/release/tapyrus-signerd tapyrus-signer-${VERSION}-x86_64-px-linux-gnu/bin
$ tar zcvf tapyrus-signer-${VERSION}-x86_64-px-linux-gnu.tar.gz tapyrus-signer-${VERSION}-x86_64-px-linux-gnu/
```

Expand All @@ -78,7 +78,7 @@ $ tar zcvf tapyrus-signer-${VERSION}-x86_64-px-linux-gnu.tar.gz tapyrus-signer-$
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
$ source $HOME/.cargo/env
$ rustc --version
rustc 1.39.0 (4560ea788 2019-11-04)
rustc 1.41.0 (5e1a79984 2020-01-27)
```

#### Build Tapyrus Signer
Expand All @@ -92,8 +92,8 @@ $ cargo build --release
#### Create archive

```
$ mkdir -p tapyrus-signer-${VERSION}-x86_64-px-linux-gnu/bin
$ cp target/release/node tapyrus-signer-${VERSION}-x86_64-px-linux-gnu/bin
$ tar zcvf tapyrus-signer-${VERSION}-x86_64-px-linux-gnu.tar.gz tapyrus-signer-${VERSION}-x86_64-px-linux-gnu/
$ mkdir -p tapyrus-signer-${VERSION}-osx64/bin
$ cp target/release/tapyrus-signerd tapyrus-signer-${VERSION}-osx64/bin
$ tar zcvf tapyrus-signer-${VERSION}-osx64.tar.gz tapyrus-signer-${VERSION}-osx64/
```

0 comments on commit bd80264

Please sign in to comment.