From 70fa29c21eadec572e15037cfda88e902cd132df Mon Sep 17 00:00:00 2001 From: Ryan Kennedy Date: Thu, 19 Mar 2020 10:06:46 -0500 Subject: [PATCH] Added changelog and version bump --- Cargo.toml | 2 +- Changelog.md | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 Changelog.md diff --git a/Cargo.toml b/Cargo.toml index ed4879b..91d4fe4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vga" -version = "0.1.1" +version = "0.1.2" authors = ["Ryan Kennedy "] edition = "2018" description = "Support for vga specific functions, data structures, and registers." diff --git a/Changelog.md b/Changelog.md new file mode 100644 index 0000000..7b170a9 --- /dev/null +++ b/Changelog.md @@ -0,0 +1,10 @@ +# 0.1.2 + +## Breaking + +- `ScreenCharacter::new` now takes a `TextModeColor` instead of 2 `Color16Bit`. + +## Other +- Added `ScreenCharacter::get_character`. +- Added `ScreenCharacter::get_color`. +- Added `TextWriter::read_character`.