From 4e0424e9ffd10bf88294d3f9ba7ae9f201955616 Mon Sep 17 00:00:00 2001 From: Eeshan Garg Date: Wed, 31 May 2017 02:47:57 -0230 Subject: [PATCH] api/setup.py: Upgrade the version to 0.3.1. Apparently, PyPI is very strict about package file names. Once you upload files for 0.3.0, and only wish to make minor changes and re-release it as the same version, it doesn't let you and complains about identical file names. --- zulip/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zulip/__init__.py b/zulip/__init__.py index 93f26ae..20861af 100644 --- a/zulip/__init__.py +++ b/zulip/__init__.py @@ -40,7 +40,7 @@ import logging import six from typing import Any, Callable, Dict, Iterable, IO, List, Mapping, Optional, Text, Tuple, Union -__version__ = "0.3.0" +__version__ = "0.3.1" logger = logging.getLogger(__name__)