Added changelog and version bump

This commit is contained in:
Ryan Kennedy 2020-03-19 10:06:46 -05:00
parent 2ff7cb8c09
commit 70fa29c21e
2 changed files with 11 additions and 1 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "vga"
version = "0.1.1"
version = "0.1.2"
authors = ["Ryan Kennedy <rkennedy9064@gmail.com>"]
edition = "2018"
description = "Support for vga specific functions, data structures, and registers."

10
Changelog.md Normal file
View file

@ -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`.