diff --git a/package.sh b/package.sh
index b347a94..ac24f64 100755
--- a/package.sh
+++ b/package.sh
@@ -1,4 +1,6 @@
#!/bin/bash
SCOURVER="0.10"
-tar cvf scour-$SCOURVER.tar scour.py LICENSE NOTICE README.txt release-notes.html
-gzip scour-$SCOURVER.tar
+cd ..
+tar cvf scour/tarballs/scour-$SCOURVER.tar scour/scour.py scour/LICENSE scour/NOTICE scour/README.txt scour/release-notes.html
+gzip scour/tarballs/scour-$SCOURVER.tar
+cd scour
diff --git a/release-notes.html b/release-notes.html
index 2b7d29d..e86aedc 100644
--- a/release-notes.html
+++ b/release-notes.html
@@ -5,7 +5,7 @@
-Scour Release Notes
+Scour Release Notes
Copyright 2009, Jeff Schiller
@@ -15,7 +15,11 @@
- - ...
+ - Remove path with empty d attributes
+ - Sanitize path data (remove unnecessary whitespace)
+ - Convert from absolute to relative path data
+ - Remove trailing zeroes from path data
+ - Limit to no more than 6 digits of precision
diff --git a/scour.py b/scour.py
index 6f3ac76..d1357c2 100755
--- a/scour.py
+++ b/scour.py
@@ -45,11 +45,6 @@
# * Put id attributes first in the serialization (or make the d attribute last)
# Next Up:
-# + Remove path with empty d attributes
-# + Sanitize path data (remove unnecessary whitespace
-# + Move from absolute to relative path data
-# + Remove trailing zeroes from path data
-# + Limit to no more than 6 digits of precision
# - Remove unnecessary units of precision on attributes (use decimal: http://docs.python.org/library/decimal.html)
# - Remove unnecessary units of precision on path coordinates
# - Convert all colors to #RRGGBB format