From c5d21bd38c39a47680dbd6e5b677b1431b639eb4 Mon Sep 17 00:00:00 2001 From: Ryan Kennedy Date: Fri, 30 Oct 2020 15:11:43 -0500 Subject: [PATCH 1/2] Version bumps --- Cargo.toml | 8 ++++---- testing/Cargo.toml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5b69a22..cdc459c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,11 +20,11 @@ repository = "https://github.com/rust-osdev/vga" [dependencies] bitflags = "1.2.1" -conquer-once = { version = "0.2.0", default-features = false } +conquer-once = { version = "0.2.1", default-features = false } font8x8 = { version = "0.2.5", default-features = false, features = ["unicode"] } -spinning_top = { version = "0.1.0", features = ["nightly"] } -x86_64 = "0.11.0" +spinning_top = { version = "0.2.2", features = ["nightly"] } +x86_64 = "0.12.2" [dependencies.num-traits] -version = "0.2.11" +version = "0.2.14" default-features = false diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 5df603b..23ce9cb 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -5,13 +5,13 @@ authors = ["Ryan Kennedy "] edition = "2018" [dependencies] -bootloader = { version = "0.9.3", features = ["map_physical_memory"] } -conquer-once = { version = "0.2.0", default-features = false } -spinning_top = { version = "0.1.0", features = ["nightly"] } +bootloader = { version = "0.9.11", features = ["map_physical_memory"] } +conquer-once = { version = "0.2.1", default-features = false } +spinning_top = { version = "0.2.2", features = ["nightly"] } pic8259_simple = "0.2.0" vga = { path = "../" } -uart_16550 = "0.2.7" -x86_64 = "0.11.0" +uart_16550 = "0.2.10" +x86_64 = "0.12.2" [package.metadata.bootimage] test-args = [ From 3544c8ca791ff0d0cb20a07c369244c46f2b05a6 Mon Sep 17 00:00:00 2001 From: Ryan Kennedy Date: Mon, 2 Nov 2020 14:41:39 -0600 Subject: [PATCH 2/2] Updated readme and version --- Cargo.toml | 2 +- Changelog.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index cdc459c..060bd72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vga" -version = "0.2.4" +version = "0.2.5" authors = ["Ryan Kennedy "] edition = "2018" description = "Support for vga specific functions, data structures, and registers." diff --git a/Changelog.md b/Changelog.md index d3f34ad..e19e523 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,3 +1,7 @@ +# 0.2.5 + +- Updated various out of date crates. + # 0.2.4 - Updated `x86_64` to fix deprecated `asm!` macro.