Skip to content

Commit

Permalink
Bump version to 0.6.0 + remove double error message
Browse files Browse the repository at this point in the history
  • Loading branch information
Hjort committed Feb 2, 2022
1 parent 9bb0abb commit 845b689
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.6.0 2022-02-02

### Added

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@concordium/node-sdk",
"version": "0.5.1",
"version": "0.6.0",
"description": "Helpers for interacting with the Concordium node",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion rust-src/external_functions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub fn deserialize_state(
) -> String {
match deserialize_state_aux(contract_name, state_bytes, schema) {
Ok(s) => s.to_string(),
Err(e) => format!("unable to get deserialize State due to: {}", e),
Err(e) => format!("{}", e),
}
}

0 comments on commit 845b689

Please sign in to comment.