Skip to content

Commit

Permalink
chore(merod, meroctl): release v0.3.0 (#1041)
Browse files Browse the repository at this point in the history
  • Loading branch information
miraclx authored Jan 16, 2025
1 parent ea8b277 commit 5293ff6
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 6 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,25 @@
# Changelog

## [Unreleased]

## [0.3.0] - 2025-01-16

- Introduced ICP integrations, achieving full feature parity with NEAR and
Starknet
- Improved replay protection on external interactions, fixing spurious failures
from expired requests
- Moved protocol selection to context creation, and out of the config
- Allowed the specification of all protocol's default context configuration
- Exposed, and enabled functionality for context proxy storage
- Introduced bootstrap command for quick development as a demo
- Added additional REST endpoints for easier access and information retrieval

## [0.2.0] - 2024-12-05

Rust SDK:

- env::executor_id() for fetching the runtime identity (no arbitrary signing,
however.
however).
- env::context_id() for fetching the context ID.
- calimero_storage::collections::{Unordered{Map,Set},Vector} for conflict-free
operations
Expand All @@ -31,3 +45,9 @@ Integrations:
every created context, which facilitates context representation on the network
- Starknet: reached feature parity with the NEAR implementation, allowing
contexts to be created in association with the Starknet protocol.

[unreleased]:
https://github.com/calimero-network/core/compare/merod-0.3.0...HEAD
[0.3.0]:
https://github.com/calimero-network/core/compare/merod-0.2.0...merod-0.3.0
[0.2.0]: https://github.com/calimero-network/core/releases/tag/merod-0.2.0
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion contracts/near/context-config/src/sys/migrations.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const _: () = {

migrations! {
"01_guard_revisions" => "migrations/01_guard_revisions.rs",
"02_nonces" => "migrations/02_nonces.rs",
"02_nonces" => "migrations/02_nonces.rs",
}

// ---
Expand Down
2 changes: 1 addition & 1 deletion crates/meroctl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "meroctl"
version = "0.2.0"
version = "0.3.0"
authors.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/merod/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merod"
version = "0.2.1"
version = "0.3.0"
authors.workspace = true
edition.workspace = true
repository.workspace = true
Expand Down

0 comments on commit 5293ff6

Please sign in to comment.