diff --git a/README.textile b/README.textile
index c7e054b..4e37acf 100644
--- a/README.textile
+++ b/README.textile
@@ -19,7 +19,7 @@ h2. Usage
   local colors = require 'ansicolors'
   print(colors('%{red}hello'))
   print(colors('%{redbg}hello%{reset}'))
-  print(colors('%{bright red underlined}hello'))
+  print(colors('%{bright red underline}hello'))
 </pre>
 
 The @colors@ function makes sure that color attributes are reset at each end of the generated string. If you want to generate complex strings piece-by-piece, use @colors.noReset@, which works exactly the same, but without adding the reset codes at each end of the string.
diff --git a/ansicolors-1.0-1.rockspec b/ansicolors-1.0.2-3.rockspec
similarity index 73%
rename from ansicolors-1.0-1.rockspec
rename to ansicolors-1.0.2-3.rockspec
index ceed0a1..9dfab71 100644
--- a/ansicolors-1.0-1.rockspec
+++ b/ansicolors-1.0.2-3.rockspec
@@ -1,7 +1,8 @@
 package = "ansicolors"
-version = "1.0-1"
+version = "1.0.2-3"
 source = {
-  url = "https://github.com/downloads/kikito/ansicolors.lua/ansicolors-1.0.tar.gz"
+  url = "https://github.com/kikito/ansicolors.lua/archive/v1.0.2.tar.gz",
+  dir = "ansicolors.lua-1.0.2"
 }
 description = {
   summary = "Library for color Manipulation.",
@@ -18,5 +19,6 @@ build = {
   type = "builtin",
   modules = {
     ["ansicolors"] = "ansicolors.lua"
-  }
+  },
+  copy_directories = {}
 }
diff --git a/debian/changelog b/debian/changelog
index 7dc914e..6319b73 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+lua-ansicolors (1.0.2+git20131101.1.a788ef9-1) UNRELEASED; urgency=low
+
+  * New upstream snapshot.
+
+ -- Debian Janitor <janitor@jelmer.uk>  Sun, 20 Mar 2022 00:54:40 -0000
+
 lua-ansicolors (1.0.2-3) unstable; urgency=medium
 
   * Team upload.