Skip to content
Open
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## Upcoming version

### Added
### Changed
### Fixed
### Removed
### Deprecated

## [v0.1.4]

### Added

- Support for no_std environments.
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vm-allocator"
version = "0.1.3"
version = "0.1.4"
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

Is this really a patch release? I was thinking since it's adding support for no-std, it should be a minor instead.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

It's up to the maintainers I suppose, happy to bump the minor version instead if you think it warrants that. @ShadowCurse, any thoughts?

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

I think we should keep bumping of minor version for breaking changes. (since the crate is still not 1.0)

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

@andreeaflorescu if that sounds okay to you, I can just update the changelog (in response to your other comment).

description = "Helpers for allocating resources needed during the lifetime of a VM."
repository = "https://github.com/rust-vmm/vm-allocator"
authors = ["rust-vmm AWS maintainers <rust-vmm-maintainers@amazon.com>"]
Expand All @@ -15,5 +15,5 @@ std = []

[dependencies]
libc = "0.2.39"
thiserror = {version= "2.0", default-features = false}
thiserror = { version = "2.0", default-features = false }
serde = { version = "1.0.137", optional = true, features = ["derive"] }