Skip to content

Commit 2f83e03

Browse files
authored
feat: bump core version + release logs (#1243)
1 parent 4702cda commit 2f83e03

File tree

5 files changed

+65
-27
lines changed

5 files changed

+65
-27
lines changed

CHANGELOG.md

Lines changed: 45 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
## [Unreleased]
44

5+
## [0.6.0] - 2025-05-5
6+
7+
- Added alias substitution and use command for streamlined context interactions
8+
( [#1223](https://github.com/calimero-network/core/pull/1223) - thanks
9+
[@Nathy-bajo](https://github.com/Nathy-bajo),
10+
[#1171](https://github.com/calimero-network/core/pull/1171) - thanks
11+
[@rtb-12](https://github.com/rtb-12) )
12+
- Added support for alias on context invitation and join command (
13+
[#1181](https://github.com/calimero-network/core/pull/1181) - thanks
14+
[@cy4n1d3-p1x3l](https://github.com/cy4n1d3-p1x3l),
15+
[#1151](https://github.com/calimero-network/core/pull/1151) - thanks
16+
[@iamgoeldhruv](https://github.com/iamgoeldhruv) )
17+
- Introduced event-triggered command execution with context watch (
18+
[#1224](https://github.com/calimero-network/core/pull/1224) - thanks
19+
[@Nathy-bajo](https://github.com/Nathy-bajo) )
20+
- Added support for no-auth mode for node (
21+
[#1174](https://github.com/calimero-network/core/pull/1174) )
22+
- Enabled forced alias creation and validation for safer configuration (
23+
[#1227](https://github.com/calimero-network/core/pull/1227) - thanks
24+
[@rtb-12](https://github.com/rtb-12),
25+
[#1180](https://github.com/calimero-network/core/pull/1180) - thanks
26+
[@rtb-12](https://github.com/rtb-12) )
27+
- Improved Dockerfile, login popup, and admin dashboard experience (
28+
[#1214](https://github.com/calimero-network/core/pull/1214),
29+
[#1209](https://github.com/calimero-network/core/pull/1209),
30+
[#1205](https://github.com/calimero-network/core/pull/1205) - thanks
31+
[@iamgoeldhruv](https://github.com/iamgoeldhruv) )
32+
- Optimized CI/CD, e2e test reliability, and removed redundant config fields (
33+
[#1235](https://github.com/calimero-network/core/pull/1235),
34+
[#1218](https://github.com/calimero-network/core/pull/1218) - thanks
35+
[@Nathy-bajo](https://github.com/Nathy-bajo),
36+
[#1206](https://github.com/calimero-network/core/pull/1206) - thanks
37+
[@Nathy-bajo](https://github.com/Nathy-bajo) )
38+
539
## [0.5.0] - 2025-03-27
640

741
- Added Ethereum integration
@@ -39,12 +73,12 @@
3973

4074
Rust SDK:
4175

42-
- env::executor_id() for fetching the runtime identity (no arbitrary signing,
76+
- env::executor_id() for fetching the runtime identity (no arbitrary signing,
4377
however).
44-
- env::context_id() for fetching the context ID.
45-
- calimero_storage::collections::{Unordered{Map,Set},Vector} for conflict-free
78+
- env::context_id() for fetching the context ID.
79+
- calimero_storage::collections::{Unordered{Map,Set},Vector} for conflict-free
4680
operations
47-
- Self::external() for external (blockchain) operations
81+
- Self::external() for external (blockchain) operations
4882

4983
Node:
5084

@@ -53,12 +87,12 @@ Node:
5387
- Peers can share the application blob between one another, in case one of them
5488
doesn't have it installed
5589
- The node has been split up into 2 binaries
56-
- merod retains node-specific commands, init, run, config
57-
- meroctl hosts client commands like context create, etc..
58-
- merod config now has a generic & more flexible interface
59-
- query & mutate in the API have now been merged into just execute
90+
- merod retains node-specific commands, init, run, config
91+
- meroctl hosts client commands like context create, etc..
92+
- merod config now has a generic & more flexible interface
93+
- query & mutate in the API have now been merged into just execute
6094
- interactive CLI now uses clap, making it more robust (merod)
61-
- Added --output-format json for machine-readable output (meroctl)
95+
- Added --output-format json for machine-readable output (meroctl)
6296

6397
Integrations:
6498

@@ -67,7 +101,8 @@ Integrations:
67101
- Starknet: reached feature parity with the NEAR implementation, allowing
68102
contexts to be created in association with the Starknet protocol.
69103

70-
[unreleased]: https://github.com/calimero-network/core/compare/0.5.0...HEAD
104+
[unreleased]: https://github.com/calimero-network/core/compare/0.6.0...HEAD
105+
[0.6.0]: https://github.com/calimero-network/core/compare/0.5.0...0.6.0
71106
[0.5.0]: https://github.com/calimero-network/core/compare/0.4.0...0.5.0
72107
[0.4.0]: https://github.com/calimero-network/core/compare/merod-0.3.1...0.4.0
73108
[0.3.1]:

CONTRIBUTING.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ There are several ways you can contribute:
3030
Contributions are managed via Issues and Pull Requests (PRs). Here are some
3131
general guidelines:
3232

33-
- Read our [Rust style guide][STYLE] to ensure compatibility with the rest of our codebase!
33+
- Read our [Rust style guide][STYLE] to ensure compatibility with the rest of
34+
our codebase!
3435

3536
- Before creating a new Issue or PR, search for [existing ones][Issues].
3637

@@ -107,11 +108,13 @@ We use the ["fork-and-pull"][GitPR] Git workflow:
107108

108109
7. Tag a maintainer to review your PR.
109110

110-
8. Make sure your PR follows our PR template (has to consist of a `Description`, `Test plan` and `Documentation update` sections)
111+
8. Make sure your PR follows our PR template (has to consist of a `Description`,
112+
`Test plan` and `Documentation update` sections)
111113

112114
### Commit Message Style
113115

114-
We follow a structured commit message format to ensure readability and enable automated changelog generation.
116+
We follow a structured commit message format to ensure readability and enable
117+
automated changelog generation.
115118

116119
#### Format
117120

@@ -125,16 +128,16 @@ We follow a structured commit message format to ensure readability and enable au
125128

126129
Must be one of the following:
127130

128-
| Type | Description |
129-
|------|-------------|
130-
| `build` | Changes affecting build system or dependencies |
131-
| `ci` | Changes to CI configuration files and scripts |
132-
| `docs` | Documentation only changes |
133-
| `feat` | A new feature |
134-
| `fix` | A bug fix |
135-
| `perf` | Performance improvement |
136-
| `refactor` | Code change with no bug fix or new feature |
137-
| `test` | Adding or correcting tests |
131+
| Type | Description |
132+
| ---------- | ---------------------------------------------- |
133+
| `build` | Changes affecting build system or dependencies |
134+
| `ci` | Changes to CI configuration files and scripts |
135+
| `docs` | Documentation only changes |
136+
| `feat` | A new feature |
137+
| `fix` | A bug fix |
138+
| `perf` | Performance improvement |
139+
| `refactor` | Code change with no bug fix or new feature |
140+
| `test` | Adding or correcting tests |
138141

139142
#### Scope (Optional)
140143

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/meroctl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "meroctl"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors.workspace = true
55
edition.workspace = true
66
repository.workspace = true

crates/merod/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "merod"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
authors.workspace = true
55
edition.workspace = true
66
repository.workspace = true

0 commit comments

Comments
 (0)