Skip to content

Commit

Permalink
Release 1.0 (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
alekseysidorov committed Apr 1, 2020
1 parent 315228e commit afe4a6c
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ jobs:
- cargo doc --no-deps
- cargo deadlinks --dir target/doc

# Check publish with Rust 1.41.1
# Check publish with Rust 1.42.0
- name: publish-with-rust
env: FEATURE=non-fatal-checks
rust: 1.41.1
rust: 1.42.0
script:
- cargo publish --dry-run
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## 1.0.0 - 2020-03-31

- First stable release (#159)

## 1.0.0-rc.3 - 2020-03-25

- Third release candidate (#158)
Expand Down
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "exonum-btc-anchoring"
edition = "2018"
version = "1.0.0-rc.3"
version = "1.0.0"
authors = ["The Exonum Team <[email protected]>"]
homepage = "https://exonum.com/doc/advanced/bitcoin-anchoring/"
repository = "https://github.com/exonum/exonum-btc-anchoring"
Expand All @@ -16,16 +16,16 @@ description = "An Exonum service that provides anchoring to Bitcoin blockchain."
travis-ci = { repository = "exonum/exonum-btc-anchoring" }

[dependencies]
exonum = "1.0.0-rc.3"
exonum-cli = "1.0.0-rc.3"
exonum-crypto = { version = "1.0.0-rc.3", features = ["with-protobuf"] }
exonum-derive = "1.0.0-rc.3"
exonum-explorer = "1.0.0-rc.3"
exonum-merkledb = "1.0.0-rc.3"
exonum-proto = "1.0.0-rc.3"
exonum-rust-runtime = "1.0.0-rc.3"
exonum-supervisor = "1.0.0-rc.3"
exonum-testkit = "1.0.0-rc.3"
exonum = "1.0.0"
exonum-cli = "1.0.0"
exonum-crypto = { version = "1.0.0", features = ["with-protobuf"] }
exonum-derive = "1.0.0"
exonum-explorer = "1.0.0"
exonum-merkledb = "1.0.0"
exonum-proto = "1.0.0"
exonum-rust-runtime = "1.0.0"
exonum-supervisor = "1.0.0"
exonum-testkit = "1.0.0"

anyhow = "1.0.26"
async-trait = "0.1.24"
Expand Down Expand Up @@ -56,4 +56,4 @@ toml = "0.5.6"
proptest = "0.9"

[build-dependencies]
exonum-build = "1.0.0-rc.3"
exonum-build = "1.0.0"
2 changes: 1 addition & 1 deletion guides/newbie.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ installed via `pip3` (see `exonum-launcher` README for details).
anchoring:
runtime: rust
name: "exonum-btc-anchoring"
version: "1.0.0-rc.3"
version: "1.0.0"

instances:
anchoring:
Expand Down
2 changes: 1 addition & 1 deletion launcher/exonum_btc_anchoring_plugin/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

RUST_RUNTIME_ID = 0
ANCHORING_ARTIFACT_NAME = "exonum-btc-anchoring"
ANCHORING_ARTIFACT_VERSION = "1.0.0-rc.3"
ANCHORING_ARTIFACT_VERSION = "1.0.0"


def import_anchoring_module(name: str):
Expand Down
1 change: 0 additions & 1 deletion src/proto/binary_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

use anyhow as failure;
use exonum::crypto::Hash;
use exonum_merkledb::{BinaryValue, ObjectHash};
use exonum_proto::ProtobufConvert;
Expand Down
1 change: 0 additions & 1 deletion src/proto/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

pub use binary_map::BinaryMap;

use anyhow as failure;
use anyhow::anyhow;
use bitcoin;
use btc_transaction_utils;
Expand Down

0 comments on commit afe4a6c

Please sign in to comment.