Skip to content
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# 0.5.1
Copy link

Copilot AI Apr 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The changelog’s version headings elsewhere include a date or “(TBD)” (e.g., “# 0.3.0 (TBD)”, “# 0.1.0 (2023-05-08)”), but the new “# 0.5.1” entry doesn’t. For consistency/readability, consider adding the release date (or the same parenthetical convention used in other sections).

Suggested change
# 0.5.1
# 0.5.1 (TBD)

Copilot uses AI. Check for mistakes.

## Dependencies

- Updated `syn` from 1.0 to 2.0, enabling parsing of `#[unsafe(no_mangle)]` required by Rust edition 2024.
- Updated `darling` from 0.13 to >=0.20.
- Updated `near-sdk` from >=5.2 to 5.25.
- Updated `near-workspaces` from 0.14 to 0.22.
Comment on lines +6 to +8
Copy link

Copilot AI Apr 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Some dependency upgrade bullets use non-specific version ranges (e.g., “from >=5.2 to 5.25”, “from 0.13 to >=0.20”), which is ambiguous in a changelog. It would be clearer to state concrete previous→new versions, or reflect the actual constraints used in Cargo.toml (e.g., darling is constrained to ">=0.20, <0.21").

Copilot uses AI. Check for mistakes.
- Updated `cargo-near-build` from 0.4.4 to 0.11.

## Other

- Rust edition updated from 2021 to 2024.
- MSRV updated from 1.84.0 to 1.86.0.
- Repository URLs updated from `aurora-is-near` to `Near-One`.

# 0.3.0 (TBD)

## BREAKING CHANGES:
Comment on lines 17 to 19
Copy link

Copilot AI Apr 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After the new 0.5.1 section, the next section is “# 0.3.0 (TBD)”. Having lower-version “(TBD)” sections beneath a released 0.5.x entry makes the changelog ordering confusing. Consider reorganizing into an “Unreleased” section and/or adding the missing 0.4.x/0.5.0 entries so versions are listed in descending order.

Copilot uses AI. Check for mistakes.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ resolver = "3"
version = "0.15.0"

[workspace.package]
version = "0.6.0"
version = "0.5.1"
edition = "2024"
authors = ["Aurora Labs <hello@aurora.dev>"]
# An update of the MSRV requires updating:
Expand Down
Loading