Skip to content

Commit

Permalink
Version bump 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bsoyka committed Jul 10, 2020
1 parent 16baa6a commit c2d1050
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.0
current_version = 0.4.0

[bumpversion:file:passwd/__init__.py]

Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

## [0.4.0] - 2020-07-09
### Added
- `PasswordGenerator` class with options for length, uppercase, lowercase, digits, and special characters

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# passwd
[![Testing with pytest](https://github.com/bsoyka/passwd/workflows/Testing%20with%20pytest/badge.svg?event=push)](https://github.com/bsoyka/passwd/actions)
[![Version 0.3.0](https://img.shields.io/badge/version-0.3.0-orange)](https://github.com/bsoyka/passwd/releases/tag/v0.3.0)
[![Version 0.4.0](https://img.shields.io/badge/version-0.4.0-orange)](https://github.com/bsoyka/passwd/releases/tag/v0.4.0)
[![MIT License](https://img.shields.io/pypi/l/passwd)](LICENSE)
[![Docs on GitHub](https://img.shields.io/badge/docs-on%20github-blue)](https://github.com/bsoyka/passwd/wiki)
[![GitHub Issues](https://img.shields.io/github/issues/bsoyka/passwd)](https://github.com/bsoyka/passwd/issues)
Expand Down
2 changes: 1 addition & 1 deletion passwd/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.0"
__version__ = "0.4.0"

import hashlib
from collections import Counter
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="passwd",
version="0.3.0",
version="0.4.0",
author="Benjamin Soyka",
author_email="[email protected]",
description="Assorted utilities for gracefully handling and generating passwords",
Expand Down

0 comments on commit c2d1050

Please sign in to comment.