diff --git a/ligo/debian/changelog b/ligo/debian/changelog
index d6214579cd8562b48d57c25ec53f66839faca58c..e509df7346612e5e729a18d43a3a4897d144c2e1 100644
--- a/ligo/debian/changelog
+++ b/ligo/debian/changelog
@@ -1,3 +1,9 @@
+ligo-common (1.0.1) unstable; urgency=low
+
+  * Fix version numbers.
+
+ -- Brian Moe <brian.moe@ligo.org>  Mon, 19 Dec 2011 14:26:05 -0600
+
 ligo-common (1.0-1) unstable; urgency=low
 
   * Initial release
diff --git a/ligo/ligo-common.spec b/ligo/ligo-common.spec
new file mode 100644
index 0000000000000000000000000000000000000000..076a426164b691f8e2e346b1b286f048094e0082
--- /dev/null
+++ b/ligo/ligo-common.spec
@@ -0,0 +1,34 @@
+%define name ligo-common
+%define version 1.0.1
+%define unmangled_version 1.0.1
+%define release 1
+
+Summary: Empty LIGO modules
+Name: %{name}
+Version: %{version}
+Release: %{release}
+Source0: %{name}-%{unmangled_version}.tar.gz
+License: GPL
+Group: Development/Libraries
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-buildroot
+Prefix: %{_prefix}
+BuildArch: noarch
+Vendor: Brian Moe <brian.moe@ligo.org>
+
+%description
+Empty module placeholder for other LIGO modules
+
+%prep
+%setup -n %{name}-%{unmangled_version}
+
+%build
+python setup.py build
+
+%install
+python setup.py install --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files -f INSTALLED_FILES
+%defattr(-,root,root)
diff --git a/ligo/ligo/__init__.py b/ligo/ligo/__init__.py
index 47a5cb646bf0e3a33fba096084ea44fdc0233fa7..80df196c47dfdfe039c402d6e2562d2ef3927690 100644
--- a/ligo/ligo/__init__.py
+++ b/ligo/ligo/__init__.py
@@ -1 +1 @@
-GIT_TAG = "ligo-common-1.0-1"
+GIT_TAG = "ligo-common-1.0.1"
diff --git a/ligo/setup.cfg b/ligo/setup.cfg
deleted file mode 100644
index 46b44e695da88756bc2d44151f342065c91ec494..0000000000000000000000000000000000000000
--- a/ligo/setup.cfg
+++ /dev/null
@@ -1,3 +0,0 @@
-[bdist_rpm]
-release = 1.0
-
diff --git a/ligo/setup.py b/ligo/setup.py
index f89358435362aa60ece67db83fb1440768ddc9f6..6a282c25f722096ec4edae69e5ad19149e58c726 100644
--- a/ligo/setup.py
+++ b/ligo/setup.py
@@ -1,7 +1,7 @@
 
 from distutils.core import setup
 
-version = "1.0"
+version = "1.0.1"
 
 setup(
   name = "ligo-common",