Skip to content

Commit 394148a

Browse files
authored
Merge pull request #197 from aeternity/release/4.1.0
Release 4.1.0
2 parents 7601b8f + db1b7fc commit 394148a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+7693
-6703
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
NODE_TAG=v6.4.0
1+
NODE_TAG=v6.5.2
22
COMPILER_TAG=v6.1.0

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,5 @@ docs
1010
/docker-compose.override.yml
1111
/pnpm-debug.log
1212
bin
13+
/.nyc_output
14+
/test-artifacts

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [4.1.0](https://github.com/aeternity/aepp-cli-js/compare/v4.0.0...v4.1.0) (2022-07-28)
6+
7+
8+
### Features
9+
10+
* don't print stack traces for cli errors ([e62be74](https://github.com/aeternity/aepp-cli-js/commit/e62be74a103672f005bc89781a047c57fb02b5e7))
11+
12+
13+
### Bug Fixes
14+
15+
* commands in crypto module ([6d6da0c](https://github.com/aeternity/aepp-cli-js/commit/6d6da0cdacd195f012de801e3ce2673a67cdebdd))
16+
* **contract:** always store aci in descriptor, override descr by options ([278a6ff](https://github.com/aeternity/aepp-cli-js/commit/278a6ff55268a8814cf7bd97ef2dd686850ff75b))
17+
* **contract:** clear error when can't parse call arguments ([34ae285](https://github.com/aeternity/aepp-cli-js/commit/34ae28502e97fb4a64419d014790ce2cef99d1ef))
18+
* **contract:** create file descriptor at not existing path ([485117e](https://github.com/aeternity/aepp-cli-js/commit/485117ee118ecf8ba2af3680df1c72b02f12347d))
19+
* **contract:** fall if descriptor file specified but not exists ([37b490f](https://github.com/aeternity/aepp-cli-js/commit/37b490fc4491ebfb9c91106cc0211c690b1b2ec4))
20+
* remove broken `crypto decrypt` command ([03c645c](https://github.com/aeternity/aepp-cli-js/commit/03c645cbc30e0088a034135d3b26edcc9aa08f55))
21+
* remove broken `crypto genkey` command ([32e5b0f](https://github.com/aeternity/aepp-cli-js/commit/32e5b0f368286d3a3ab5fa88a8e7d19664b7c554))
22+
523
## [4.0.0](https://github.com/aeternity/aepp-cli-js/compare/v3.0.0...v4.0.0) (2022-04-07)
624

725

CLI.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Usage:
3636
3737
Available Commands:
3838
chain Query the state of the chain
39-
config Print the configuration of the client
39+
config Print the configuration of the sdk
4040
help Help concerning any command
4141
inspect Inspect an object of the blockchain
4242
name A brief description of your command
@@ -58,7 +58,7 @@ Use "aecli [command] --help" for more information about a command.
5858

5959
The general groupings of commands are:
6060
- `chain` commands do not require a public or private key and give information about the state of the chain. None of the chain commands changes the state of the chain at all.
61-
- `config` displays the client's configuration file and can write the configuration to disk.
61+
- `config` displays the sdk's configuration file and can write the configuration to disk.
6262
- `help` does what one would expect and is described here no further.
6363
- `inspect` allows you to look at the objects on the blockchain.
6464
- `name` allows interaction with the naming system.

babel.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
presets: [
33
['@babel/preset-env', {
44
modules: false,
5-
targets: { node: 12 },
5+
targets: { node: 14 },
66
}],
77
],
88
plugins: [

0 commit comments

Comments
 (0)