Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-export AccountKeys #358

Merged
merged 3 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linter-testing-lib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ on:

env:
RUST_FMT: nightly-2023-04-01-x86_64-unknown-linux-gnu
RUST_CLIPPY: 1.66
RUST_CLIPPY: 1.67
DOBEN marked this conversation as resolved.
Show resolved Hide resolved

jobs:
"lint_fmt":
Expand Down
3 changes: 3 additions & 0 deletions contract-testing/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased changes

- Bump minimum supported Rust version to `1.67`.
- Re-export `AccountKeys`.

## 3.1.0

- Add functionality for setting the exchange rates and block time of the chain based on queries from an external node.
Expand Down
4 changes: 2 additions & 2 deletions contract-testing/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "concordium-smart-contract-testing"
version = "3.1.0"
version = "3.2.0"
edition = "2021"
rust-version = "1.66"
rust-version = "1.67"
license = "MPL-2.0"
readme = "README.md"
description = "A companion crate to `concordium-std` that supports off-chain end-to-end testing of smart contracts."
Expand Down
2 changes: 1 addition & 1 deletion contract-testing/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pub use concordium_base::{
ReceiveName, SignatureThreshold, SlotTime, Timestamp,
},
hashes::BlockHash,
id::types::{CredentialPublicKeys, VerifyKey},
id::types::{AccountKeys, CredentialPublicKeys, VerifyKey},
smart_contracts::{ContractEvent, ContractTraceElement, InstanceUpdatedEvent, WasmVersion},
transactions::{AccountAccessStructure, InitContractPayload, UpdateContractPayload},
};
Expand Down
Loading