From e74d217450acd2b4263c5f096d6c47cff9fd964f Mon Sep 17 00:00:00 2001 From: Swen Kooij Date: Fri, 21 Oct 2016 15:22:41 +0300 Subject: [PATCH] Added PyPi badge to README --- README.rst | 3 +++ setup.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 1ee537c..af7b284 100644 --- a/README.rst +++ b/README.rst @@ -10,6 +10,9 @@ django-localized-fields .. image:: https://travis-ci.com/SectorLabs/django-localized-fields.svg?token=sFgxhDFpypxkMcvhRoSz&branch=master :target: https://travis-ci.com/SectorLabs/django-localized-fields +.. image:: https://badge.fury.io/py/django-localized-fields.svg + :target: https://pypi.python.org/pypi/django-localized-fields + .. image:: https://img.shields.io/github/license/SectorLabs/django-localized-fields.svg ``django-localized-fields`` is an implementation of a field class for Django models that allows the field's value to be set in multiple languages. It does this by utilizing the ``hstore`` type (PostgreSQL specific), which is available as ``models.HStoreField`` in Django 1.10. diff --git a/setup.py b/setup.py index 5ab695e..962d609 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme: setup( name='django-localized-fields', - version='1.0', + version='1.1', packages=find_packages(), include_package_data=True, license='MIT License',