Skip to content

Commit 63e9980

Browse files
authored
Merge pull request #39 from DevoInc/release-next
Release-next to Master: new v2.0.0 version
2 parents 55d3ee5 + 3b3ec96 commit 63e9980

File tree

18 files changed

+492
-795
lines changed

18 files changed

+492
-795
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [2.0.0] - 2019-01-21
8+
#### Changed
9+
* Changed all logic in API calls for stream and non stream calls, improving speed in streaming x3
10+
* API responses are now iterator
11+
* Rollback to request sockets instead of custom sockets in API
12+
* Rollback to one class in Client, instead of Base and Client
13+
* Behavior of the processors, optimizing their performance and only allowing default processors/flags, within the API
14+
15+
#### Removed
16+
* Buffer files
17+
* chain_dict files
18+
19+
#### Deprecated
20+
* Buffer item
21+
* Old custom processors functions in API calls
22+
23+
724
## [1.6.3] - 2019-01-17
825
#### Fixed
926
* Broken urls in documentations

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[![master Build Status](https://travis-ci.com/DevoInc/python-sdk.svg?branch=master)](https://travis-ci.com/DevoInc/python-sdk) [![LICENSE](https://img.shields.io/dub/l/vibe-d.svg)](https://github.com/DevoInc/python-sdk/blob/master/LICENSE)
33

4-
[![wheel](https://img.shields.io/badge/wheel-yes-brightgreen.svg)](https://pypi.org/project/devo-sdk/) [![version](https://img.shields.io/badge/version-1.6.3-blue.svg)](https://pypi.org/project/devo-sdk/) [![python](https://img.shields.io/badge/python-2.7%20%7C%203.3%20%7C%203.4%20%7C%203.5%20%7C%203.6%20%7C%203.7-blue.svg)](https://pypi.org/project/devo-sdk/)
4+
[![wheel](https://img.shields.io/badge/wheel-yes-brightgreen.svg)](https://pypi.org/project/devo-sdk/) [![version](https://img.shields.io/badge/version-2.0.0-blue.svg)](https://pypi.org/project/devo-sdk/) [![python](https://img.shields.io/badge/python-2.7%20%7C%203.3%20%7C%203.4%20%7C%203.5%20%7C%203.6%20%7C%203.7-blue.svg)](https://pypi.org/project/devo-sdk/)
55

66

77
# Devo Python SDK

devo/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__description__ = 'Devo Python Library.'
22
__url__ = 'http://www.devo.com'
3-
__version__ = "1.6.3"
3+
__version__ = "2.0.0"
44
__author__ = 'Devo'
55
__author_email__ = 'support@devo.com'
66
__license__ = 'MIT'

devo/api/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
from .client import Client, DevoClientException
1+
from .client import Client, DevoClientException, DEFAULT, TO_STR, \
2+
TO_BYTES, JSON, JSON_SIMPLE, COMPACT_TO_ARRAY, \
3+
SIMPLECOMPACT_TO_ARRAY, SIMPLECOMPACT_TO_OBJ

devo/api/base.py

Lines changed: 0 additions & 174 deletions
This file was deleted.

0 commit comments

Comments
 (0)