Bump version

This commit is contained in:
martinrusev
2017-09-18 10:14:48 +02:00
parent 5e2afc6511
commit 8d3b897a7a
4 changed files with 12 additions and 5 deletions

View File

@@ -5,8 +5,7 @@ python:
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
install:
- python setup.py -q install
script: nosetests
script: nosetests -v

View File

@@ -1,3 +1,12 @@
## 0.9 (18 December 2017)
IMPROVEMENTS:
* Permissively Decode Emails: ([#78](https://github.com/martinrusev/imbox/pull/78))
* "With" statement for automatic cleanup/logout ([#92](https://github.com/martinrusev/imbox/pull/92))
## 0.8.6 (6 December 2016)
IMPROVEMENTS:

View File

@@ -1,5 +1,3 @@
from __future__ import unicode_literals
import logging
logger = logging.getLogger(__name__)

View File

@@ -1,7 +1,7 @@
from setuptools import setup
import os
version = '0.8.5'
version = '0.9'
def read(filename):
@@ -26,5 +26,6 @@ setup(
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
),
)