diff --git a/crates/html-macro/Cargo.toml b/crates/html-macro/Cargo.toml
index 67306b12..ce03208e 100644
--- a/crates/html-macro/Cargo.toml
+++ b/crates/html-macro/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "html-macro"
-version = "0.2.4"
+version = "0.2.5"
description = "html macro"
authors = ["Chinedu Francis Nwafili "]
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]
diff --git a/crates/html-macro/src/tag.rs b/crates/html-macro/src/tag.rs
index 68dc0bbd..7f1d9c43 100644
--- a/crates/html-macro/src/tag.rs
+++ b/crates/html-macro/src/tag.rs
@@ -164,10 +164,8 @@ fn parse_attributes(input: &mut ParseStream) -> Result> {
{
let (key, key_span) = parse_attribute_key(input)?;
- println!("PARSING EQUALS");
// =
input.parse::()?;
- println!("PARSED EQUALS");
// Continue parsing tokens until we see the next attribute or a closing > tag
let mut value_tokens = TokenStream::new();
diff --git a/crates/percy-dom/Cargo.toml b/crates/percy-dom/Cargo.toml
index d9ffb777..eba53119 100644
--- a/crates/percy-dom/Cargo.toml
+++ b/crates/percy-dom/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "percy-dom"
-version = "0.9.8"
+version = "0.9.9"
authors = ["Chinedu Francis Nwafili "]
description = "A standalone Virtual DOM creation, diffing and patching implementation"
keywords = ["virtual", "dom", "wasm", "assembly", "webassembly"]