Bump version
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import logging
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
3
setup.py
3
setup.py
@@ -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'
|
||||
),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user