diff --git a/Cargo.toml b/Cargo.toml
index c96a093..698b07e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,7 +5,7 @@ members = [
   "hui-derive",
   "hui-examples",
   "hui-glium",
-  "hui-painter-wip",
+  "hui-painter",
   "hui-shared",
   "hui-wgpu",
   "hui-winit"
diff --git a/hui-painter-wip/Cargo.toml b/hui-painter/Cargo.toml
similarity index 96%
rename from hui-painter-wip/Cargo.toml
rename to hui-painter/Cargo.toml
index c42dd17..2849fa0 100644
--- a/hui-painter-wip/Cargo.toml
+++ b/hui-painter/Cargo.toml
@@ -1,5 +1,5 @@
 [package]
-name = "hui-painter-wip"
+name = "hui-painter"
 description = "UI rendering middleware for hUI, abstracts away triangulation, text layout and rendering and all the other hard stuff."
 repository = "https://github.com/griffi-gh/hui"
 readme = "../README.md"
diff --git a/hui-painter-wip/src/lib.rs b/hui-painter/src/lib.rs
similarity index 100%
rename from hui-painter-wip/src/lib.rs
rename to hui-painter/src/lib.rs
diff --git a/hui-painter-wip/src/paint.rs b/hui-painter/src/paint.rs
similarity index 100%
rename from hui-painter-wip/src/paint.rs
rename to hui-painter/src/paint.rs
diff --git a/hui-painter-wip/src/paint/buffer.rs b/hui-painter/src/paint/buffer.rs
similarity index 100%
rename from hui-painter-wip/src/paint/buffer.rs
rename to hui-painter/src/paint/buffer.rs
diff --git a/hui-painter-wip/src/paint/command.rs b/hui-painter/src/paint/command.rs
similarity index 100%
rename from hui-painter-wip/src/paint/command.rs
rename to hui-painter/src/paint/command.rs
diff --git a/hui-painter-wip/src/paint/command/list.rs b/hui-painter/src/paint/command/list.rs
similarity index 100%
rename from hui-painter-wip/src/paint/command/list.rs
rename to hui-painter/src/paint/command/list.rs
diff --git a/hui-painter-wip/src/paint/command/rectangle.rs b/hui-painter/src/paint/command/rectangle.rs
similarity index 100%
rename from hui-painter-wip/src/paint/command/rectangle.rs
rename to hui-painter/src/paint/command/rectangle.rs
diff --git a/hui-painter-wip/src/paint/command/text.rs b/hui-painter/src/paint/command/text.rs
similarity index 100%
rename from hui-painter-wip/src/paint/command/text.rs
rename to hui-painter/src/paint/command/text.rs
diff --git a/hui-painter-wip/src/paint/command/transform.rs b/hui-painter/src/paint/command/transform.rs
similarity index 100%
rename from hui-painter-wip/src/paint/command/transform.rs
rename to hui-painter/src/paint/command/transform.rs
diff --git a/hui-painter-wip/src/text.rs b/hui-painter/src/text.rs
similarity index 100%
rename from hui-painter-wip/src/text.rs
rename to hui-painter/src/text.rs
diff --git a/hui-painter-wip/src/text/font.rs b/hui-painter/src/text/font.rs
similarity index 100%
rename from hui-painter-wip/src/text/font.rs
rename to hui-painter/src/text/font.rs
diff --git a/hui-painter-wip/src/text/ftm.rs b/hui-painter/src/text/ftm.rs
similarity index 100%
rename from hui-painter-wip/src/text/ftm.rs
rename to hui-painter/src/text/ftm.rs
diff --git a/hui-painter-wip/src/texture.rs b/hui-painter/src/texture.rs
similarity index 100%
rename from hui-painter-wip/src/texture.rs
rename to hui-painter/src/texture.rs
diff --git a/hui-painter-wip/src/texture/atlas.rs b/hui-painter/src/texture/atlas.rs
similarity index 100%
rename from hui-painter-wip/src/texture/atlas.rs
rename to hui-painter/src/texture/atlas.rs
diff --git a/hui-painter-wip/src/util.rs b/hui-painter/src/util.rs
similarity index 100%
rename from hui-painter-wip/src/util.rs
rename to hui-painter/src/util.rs