Skip to content

Commit

Permalink
Release CLI wallet 1.0 (#952)
Browse files Browse the repository at this point in the history
* Version + changelog

* Release description
  • Loading branch information
thibault-martinez committed Jul 27, 2023
1 parent 363a556 commit 8fa56d9
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 26 deletions.
16 changes: 2 additions & 14 deletions .github/workflows/cli-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,20 +24,8 @@ jobs:
tag_name: "cli-wallet-v${{ env.CRATE_VERSION }}"
release_name: "cli-wallet-v${{ env.CRATE_VERSION }}"
body: |
# Changelog
<!--- ## Added -->
<!--- ## Changed -->
<!--- ## Deprecated -->
<!--- ## Removed -->
<!--- ## Fixed -->
# Checksums
https://github.com/iotaledger/iota-sdk/blob/develop/cli/CHANGELOG.md
|Asset|SHA-256 checksum|
|---|---|
|wallet-linux||
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

24 changes: 24 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog

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 - YYYY-MM-DD
### Added
### Changed
### Deprecated
### Removed
### Fixed
### Security -->

## 1.0.0 - 2023-07-27

First release of the `cli-wallet`.
38 changes: 29 additions & 9 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cli-wallet"
version = "1.0.0-rc.2"
authors = [ "IOTA Stiftung" ]
version = "1.0.0"
authors = ["IOTA Stiftung"]
edition = "2021"
homepage = "https://iota.org"
description = "Command line interface wallet application based on the IOTA SDK"
Expand All @@ -12,18 +12,38 @@ name = "wallet"
path = "src/main.rs"

[dependencies]
iota-sdk = { path = "../sdk", default-features = false, features = [ "wallet", "tls", "storage", "rocksdb", "stronghold", "participation" ] }
iota-sdk = { path = "../sdk", default-features = false, features = [
"wallet",
"tls",
"storage",
"rocksdb",
"stronghold",
"participation",
] }

chrono = { version = "0.4.26", default-features = false, features = [ "std" ] }
clap = { version = "4.3.19", default-features = false, features = [ "std", "color", "help", "usage", "error-context", "suggestions", "derive", "env" ] }
chrono = { version = "0.4.26", default-features = false, features = ["std"] }
clap = { version = "4.3.19", default-features = false, features = [
"std",
"color",
"help",
"usage",
"error-context",
"suggestions",
"derive",
"env",
] }
colored = { version = "2.0.4", default-features = false }
dialoguer = { version = "0.10.4", default-features = false, features = [ "history", "password", "completion" ] }
dialoguer = { version = "0.10.4", default-features = false, features = [
"history",
"password",
"completion",
] }
dotenvy = { version = "0.15.7", default-features = false }
fern-logger = { version = "0.5.0", default-features = false }
humantime = { version = "2.1.0", default-features = false }
log = { version = "0.4.19", default-features = false }
prefix-hex = { version = "0.7.1", default-features = false, features = [ "std" ] }
serde_json = { version = "1.0.103", default-features = false }
prefix-hex = { version = "0.7.1", default-features = false, features = ["std"] }
serde_json = { version = "1.0.104", default-features = false }
thiserror = { version = "1.0.44", default-features = false }
tokio = { version = "1.29.1", default-features = false, features = [ "fs" ] }
tokio = { version = "1.29.1", default-features = false, features = ["fs"] }
zeroize = { version = "1.6.0", default-features = false }

0 comments on commit 8fa56d9

Please sign in to comment.