Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9970fb3

Browse files
committed
Prepare 1.0.0 release
1 parent 3ad6e41 commit 9970fb3

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGES.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Next Release
2-
------------
1+
1.0.0 (2014-02-02)
2+
------------------
33

44
- Dropped support for Python versions before 2.6.
55

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '0.5'
1+
__version__ = '1.0.0'
22

33
import os
44
import sys
@@ -7,10 +7,10 @@
77

88
if py_version < (2, 6):
99
raise RuntimeError(
10-
'On Python 2, supervisor_twiddler requires Python 2.6 or later')
10+
'On Python 2, supervisor_cache requires Python 2.6 or later')
1111
elif (3, 0) < py_version < (3, 2):
1212
raise RuntimeError(
13-
'On Python 3, supervisor_twiddler requires Python 3.2 or later')
13+
'On Python 3, supervisor_cache requires Python 3.2 or later')
1414

1515
from setuptools import setup, find_packages
1616
here = os.path.abspath(os.path.dirname(__file__))
@@ -41,7 +41,7 @@
4141
name = 'supervisor_cache',
4242
version = __version__,
4343
license = 'License :: OSI Approved :: BSD License',
44-
url = 'http://github.com/mnaberez/supervisor_cache',
44+
url = 'https://github.com/mnaberez/supervisor_cache',
4545
description = "supervisor_cache RPC extension for supervisor",
4646
long_description= DESC,
4747
classifiers = CLASSIFIERS,

0 commit comments

Comments
 (0)