Skip to content

Commit 1fac3f0

Browse files
authored
release: change crate version to v0.3.0 and update CHANGELOG.md (#381)
* release: change crate version and CHANGELOG.md Signed-off-by: Doru Blânzeanu <[email protected]> * release: update dependencies versions Signed-off-by: Doru Blânzeanu <[email protected]> --------- Signed-off-by: Doru Blânzeanu <[email protected]>
1 parent 54ffc0d commit 1fac3f0

File tree

3 files changed

+25
-9
lines changed

3 files changed

+25
-9
lines changed

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
55
## [Prerelease] - Unreleased
66

77
### Added
8+
-
9+
10+
### Changed
11+
-
12+
13+
### Removed
14+
-
15+
16+
### Fixed
17+
-
18+
19+
## [v.0.3.0] - 2025-03-27
20+
21+
### Added
22+
- Gdb support for mshv guests #327 by @dblnz in [#327](https://github.com/hyperlight-dev/hyperlight/pull/327)
823
- Add fuzzing targets for fuzzing guest and host call parameters and return value by @ludfjig in [#259](https://github.com/hyperlight-dev/hyperlight/pull/259)
924

1025
### Changed
@@ -50,6 +65,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
5065
The Initial Hyperlight Release 🎉
5166

5267

53-
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.2.0..HEAD>
68+
[Prerelease]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.3.0..HEAD>
69+
[v0.3.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.2.0...v0.3.0>
5470
[v0.2.0]: <https://github.com/hyperlight-dev/hyperlight/compare/v0.1.0...v0.2.0>
5571
[v0.1.0]: <https://github.com/hyperlight-dev/hyperlight/releases/tag/v0.1.0>

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ exclude = [
1717
]
1818

1919
[workspace.package]
20-
version = "0.2.0"
20+
version = "0.3.0"
2121
edition = "2021"
2222
rust-version = "1.81.0"
2323
license = "Apache-2.0"
@@ -26,9 +26,9 @@ repository = "https://github.com/hyperlight-dev/hyperlight"
2626
readme = "README.md"
2727

2828
[workspace.dependencies]
29-
hyperlight-common = { path = "src/hyperlight_common", version = "0.2.0", default-features = false }
30-
hyperlight-host = { path = "src/hyperlight_host", version = "0.2.0", default-features = false }
31-
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.2.0", default-features = false }
29+
hyperlight-common = { path = "src/hyperlight_common", version = "0.3.0", default-features = false }
30+
hyperlight-host = { path = "src/hyperlight_host", version = "0.3.0", default-features = false }
31+
hyperlight-guest = { path = "src/hyperlight_guest", version = "0.3.0", default-features = false }
3232
hyperlight-testing = { path = "src/hyperlight_testing", default-features = false }
3333

3434
[workspace.lints.rust]

0 commit comments

Comments
 (0)