aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Firshman2014-10-31 15:14:06 +0100
committerBen Firshman2014-10-31 15:14:06 +0100
commit6a44f112ce3cddecb8c22419cb334eebfe8c18d0 (patch)
tree52a48cccff30dc148664f5bbf799283ea35eec2b
parentbe69d827aab90a0c185c20fd0c8289914038c214 (diff)
parentad01fd6896289e6a58779c20ce02acf3c31576ea (diff)
downloaddjango-shorturls-1.1.0.tar.bz2
Merge pull request #11 from bfirsh/ship-1.1.01.1.0
Ship 1.1.0
-rw-r--r--CHANGES.rst17
-rw-r--r--README.rst2
-rw-r--r--setup.py2
3 files changed, 19 insertions, 2 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
new file mode 100644
index 0000000..76de5de
--- /dev/null
+++ b/CHANGES.rst
@@ -0,0 +1,17 @@
+Change log
+==========
+
+1.1.0 (2014-10-31)
+------------------
+
+- Added support for Django 1.7
+- Added a Crockford base 32 encoder
+- Made base conversion significantly faster
+
+1.0.1 (2009-04-13)
+------------------
+
+Initial release.
+
+
+
diff --git a/README.rst b/README.rst
index 2f5e857..addcdea 100644
--- a/README.rst
+++ b/README.rst
@@ -13,7 +13,7 @@ Most code was originally by Simon Willison; see
http://simonwillison.net/2009/Apr/11/revcanonical/ for details. Improved
slightly and packaged by Jacob Kaplan-Moss.
-Patches welcome: http://github.com/jacobian/django-shorturls
+Patches welcome: http://github.com/bfirsh/django-shorturls
Usage
=====
diff --git a/setup.py b/setup.py
index 748de7b..52c07ce 100644
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ def read(fname):
setup(
name = "django-shorturls",
- version = "1.0.1",
+ version = "1.1.0",
url = 'https://github.com/bfirsh/django-shorturls',
license = 'BSD',
description = "A URL shortening app for Django.",