From 39ad683665e628e4a15a998f0008ae937af8224c Mon Sep 17 00:00:00 2001 From: Ryan Kennedy Date: Sun, 5 Apr 2020 18:58:30 -0500 Subject: [PATCH] Changelog and version bump --- Cargo.toml | 2 +- Changelog.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2f03e24..bf7fbd3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vga" -version = "0.2.2" +version = "0.2.3" authors = ["Ryan Kennedy "] edition = "2018" description = "Support for vga specific functions, data structures, and registers." diff --git a/Changelog.md b/Changelog.md index 677d5bb..babb358 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,8 @@ +# 0.2.3 + +- Added support for 320x240x256 mode via `Graphics320x240x256`. +- Added the ability to easily get a pointer to the modes frame buffer via `GraphicsWriter::get_frame_buffer`. + # 0.2.2 ## Breaking