Skip to content

Commit 32f76cf

Browse files
author
Worvast
authored
Merge pull request #4 from Worvast/master
[1.0.2] - 2019-04-24
2 parents 7904cfd + 673c422 commit 32f76cf

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ 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+
## [1.0.2] - 2019-04-24
8+
#### Security
9+
* Updated requirements for high problems of security
10+
711
## [1.0.1] - 2019-04-11
812
#### Fixed
913
* Fixed problems with syslog_raw_sender in Faker when not "\n" at end of line sended

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![relese-next Build Status](https://travis-ci.com/DevoInc/python-utils.svg?branch=master)](https://travis-ci.com/DevoInc/python-utils) [![LICENSE](https://img.shields.io/dub/l/vibe-d.svg)](https://github.com/DevoInc/python-utils/blob/master/LICENSE)
22

3-
[![wheel](https://img.shields.io/badge/wheel-yes-brightgreen.svg)](https://pypi.org/project/devo-utils/) [![version](https://img.shields.io/badge/version-1.0.1-blue.svg)](https://pypi.org/project/devo-utils/) [![python](https://img.shields.io/badge/python-3.3%20%7C%203.4%20%7C%203.5%20%7C%203.6%20%7C%203.7-blue.svg)](https://pypi.org/project/devo-utils/)
3+
[![wheel](https://img.shields.io/badge/wheel-yes-brightgreen.svg)](https://pypi.org/project/devo-utils/) [![version](https://img.shields.io/badge/version-1.0.2-blue.svg)](https://pypi.org/project/devo-utils/) [![python](https://img.shields.io/badge/python-3.3%20%7C%203.4%20%7C%203.5%20%7C%203.6%20%7C%203.7-blue.svg)](https://pypi.org/project/devo-utils/)
44

55

66
# Devo Python Utils

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

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Click==7.0
22
requests==2.21.0
33
pyyaml>=git+git://github.com/yaml/pyyaml@releases/tag/5.1b3
44
devo-sdk>=2,<3
5-
Jinja2==2.10
6-
psutil==5.4.8
7-
python-dateutil==2.7.5
8-
Faker==1.0.1
5+
Jinja2>=2.10.1
6+
psutil==5.6.1
7+
python-dateutil==2.8.0
8+
Faker==1.0.5

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"Programming Language :: Python :: Implementation :: PyPy",
2424
"Topic :: Software Development :: Libraries :: Python Modules",
2525
]
26-
INSTALL_REQUIRES = ['devo-sdk', 'faker', 'jinja2', 'psutil', 'click',
26+
INSTALL_REQUIRES = ['devo-sdk', 'faker', 'jinja2>=2.10.1', 'psutil', 'click',
2727
'python-dateutil']
2828
CLI = ['devo-faker=devoutils.faker.scripts.faker_cli:cli']
2929

0 commit comments

Comments
 (0)