Skip to content

Commit

Permalink
Release v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
surya teja reddy valluri committed Jul 5, 2019
1 parent 6b11b22 commit c363ca6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Random password Generator
[![PyPI version](https://img.shields.io/badge/PYPI-V%202.0.1-blue.svg)](https://pypi.org/project/random-password-generator)
[![PyPI version](https://img.shields.io/badge/PYPI-V%202.1.0-blue.svg)](https://pypi.org/project/random-password-generator)
[![Build Status](https://travis-ci.org/suryasr007/random-password-generator.svg?branch=master)](https://travis-ci.org/suryasr007/random-password-generator)
##### A simple and custom random password generator.
* Generate a simple password of default length 6-16.
Expand Down Expand Up @@ -61,6 +61,10 @@
| minnumbers | Minimum numbers required in password | 1 |
| minschars | Minimum special characters in the password | 1 |

## Update V2.1.0
Application uses [secrets](https://docs.python.org/3/library/secrets.html) module instaed of `random` module **whenever** possible.


## Update V2.0.1
Application is available at following link: https://random-pg.herokuapp.com/

Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from os import path


VERSION = 'v2.0.1'
VERSION = 'v2.1.0'

here = path.abspath(path.dirname(__file__))

Expand All @@ -29,11 +29,9 @@
# 5 - Production/Stable

'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
Expand Down

0 comments on commit c363ca6

Please sign in to comment.