Skip to content

Commit

Permalink
Release 1.2.2 (#16)
Browse files Browse the repository at this point in the history
* Update ChangeLog.rst

* bump version number to latest

* Add more badges

* Add more tox env

* Add more python versions to travis

* Update tox.ini

* Add pypy

* Update .travis.yml

* Update tox.ini

* Update tox.ini

* Update tox.ini

* Update setup.py
  • Loading branch information
Alir3z4 committed May 31, 2016
1 parent d32f255 commit fffbdbe
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
language: python
python:
- 2.7
- 3.3
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
install:
pip install -r requirements/devel.txt
script: tox
Expand Down
7 changes: 7 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.2.2 2016-05-31
================
----

* Fix #15: bug in division of huge numbers


1.2 2014-01-12
==============
----
Expand Down
28 changes: 28 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,34 @@ Short URL Generator
.. image:: https://travis-ci.org/Alir3z4/python-short_url.png
:alt: travis-cli tests status for short_url
:target: https://travis-ci.org/Alir3z4/python-short_url

.. image:: http://badge.kloud51.com/pypi/v/short_url.svg
:target: https://pypi.python.org/pypi/short_url
:alt: PyPI Version

.. image:: http://badge.kloud51.com/pypi/s/short_url.svg
:target: https://pypi.python.org/pypi/short_url
:alt: PyPI Status

.. image:: http://badge.kloud51.com/pypi/l/short_url.svg
:target: https://pypi.python.org/pypi/short_url
:alt: PyPI License

.. image:: http://badge.kloud51.com/pypi/f/short_url.svg
:target: https://pypi.python.org/pypi/short_url
:alt: PyPI Format

.. image:: http://badge.kloud51.com/pypi/p/short_url.svg
:target: https://pypi.python.org/pypi/short_url
:alt: PyPI Py_versions

.. image:: http://badge.kloud51.com/pypi/i/short_url.svg
:target: https://pypi.python.org/pypi/short_url
:alt: PyPI Implementation

.. image:: http://badge.kloud51.com/pypi/e/short_url.svg
:target: https://pypi.python.org/pypi/short_url
:alt: PyPI Egg

Python implementation for generating Tiny URL- and bit.ly-like URLs.

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development'
],
)
2 changes: 1 addition & 1 deletion short_url/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
Link: http://code.activestate.com/recipes/576918/
'''

__version__ = (1, 2, 1)
__version__ = (1, 2, 2)

DEFAULT_ALPHABET = 'mn6j2c4rv8bpygw95z7hsdaetxuk3fq'
DEFAULT_BLOCK_SIZE = 24
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py33
envlist = py27,py33,py34,py35
[testenv]
deps = -rrequirements/testing.txt
commands = py.test --cov=short_url --cov-report=term-missing

0 comments on commit fffbdbe

Please sign in to comment.