Skip to content

Commit f6fb467

Browse files
authored
Merge pull request #71 from Worvast/master
Version 3.2.0 - Lookups improvements
2 parents 09e5269 + 427be53 commit f6fb467

File tree

12 files changed

+917
-689
lines changed

12 files changed

+917
-689
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ 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

77

8+
## [3.2.0] - 2020-01-13
9+
#### Added
10+
* Support to Incremental lookups in CLI
11+
* Support to types in lookups
12+
* Auto-detect types for lookups
13+
* Action field for lookups
14+
15+
#### Changed
16+
* The documentation of the devo-sender is now separated into data and lookups
17+
18+
#### Deprecated
19+
* list_to_fields function in lookups its deprecated and not in use by the internal code. To be deleted in v4 of Devo-sdk
20+
821
## [3.1.1] - 2019-11-12
922
#### Added
1023
* Support to CA_MD_TOO_WEAK problems with a new flag "sec_level"

README.md

Lines changed: 3 additions & 3 deletions
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-3.1.1-blue.svg)](https://pypi.org/project/devo-sdk/) [![python](https://img.shields.io/badge/python-3.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-3.2.0-blue.svg)](https://pypi.org/project/devo-sdk/) [![python](https://img.shields.io/badge/python-3.5%20%7C%203.6%20%7C%203.7-blue.svg)](https://pypi.org/project/devo-sdk/)
55

66

77
# Devo Python SDK
@@ -45,8 +45,8 @@ You can use sources files, clonning the project too:
4545
### Documentation
4646

4747
You has specific documentation in _[docs](docs)_ folder for each part of SDK:
48-
* [Sender](docs/sender.md)
49-
* [Lookups](docs/sender.md#Lookups)
48+
* [Sender](docs/sender/sender.md)
49+
* [Lookups](docs/sender/lookup.md)
5050
* [Common](docs/common.md)
5151
* API:
5252
* [Api query](docs/api/api.md)

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__ = "3.1.1"
3+
__version__ = "3.2.0"
44
__author__ = 'Devo'
55
__author_email__ = 'support@devo.com'
66
__license__ = 'MIT'

devo/sender/data.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
FACILITY_USER, SEVERITY_INFO, COMPOSE, \
1313
COMPOSE_BYTES, priority_map
1414

15+
1516
PYPY = hasattr(sys, 'pypy_version_info')
1617

1718

0 commit comments

Comments
 (0)