Skip to content

Commit 03527d6

Browse files
committed
Bump to 0.5.0
1 parent c6e71ad commit 03527d6

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "neotron-common-bios"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Jonathan 'theJPster' Pallant <[email protected]>"]
55
edition = "2018"
66
description = "Common BIOS code and API for all Neotron systems."

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,18 @@ dual licensed as above, without any additional terms or conditions.
4343

4444
* None
4545

46+
### v0.5.0
47+
48+
* Added `serial_read` API
49+
* Added `video_mode_needs_vram` API
50+
* Added `hid_get_event` API
51+
* Added `hid_set_leds` API
52+
* Added `video_wait_for_line` API
53+
* Added `block_dev_get_info` API
54+
* Added `block_write` API
55+
* Added `block_read` API
56+
* Added `block_verify` API
57+
4658
### v0.4.0
4759

4860
* Changed `memory_get_region` to return a `MemoryRegion`

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pub use version::Version;
4141
// ============================================================================
4242

4343
/// BIOS API semantic version for the API defined in this crate.
44-
pub const API_VERSION: Version = Version::new(0, 4, 0);
44+
pub const API_VERSION: Version = Version::new(0, 5, 0);
4545

4646
// ============================================================================
4747
// Types

0 commit comments

Comments
 (0)