Skip to content

Commit

Permalink
Various documentation changes (version bump)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsoyka committed Jul 7, 2020
1 parent 4fecaa3 commit cc77e44
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
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).

## [0.2.1] - 2020-07-07
### Added
- README/contributing documentation updates

## [0.2.0] - 2020-07-06
### Added
- `PasswordRequirements` class to check if a password meets specified requirements, including minimum length, digits, and special characters
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ This includes completely new features and minor enhancements to existing code. E
### Making code contributions

#### Your first contribution
Unsure where to start? Try taking a look at these [good first issues](https://github.com/bsoyka/passwd/labels/good%20first%20issue).
Unsure where to start? Try taking a look at issues labeled [![good first issue](https://img.shields.io/github/labels/bsoyka/passwd/good%20first%20issue)](https://github.com/bsoyka/passwd/labels/good%20first%20issue).

#### Formatting and testing
This project uses [`autopep8`](https://pypi.org/project/autopep8/) for formatting. To format a file:
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# passwd
[![Testing with pytest](https://github.com/bsoyka/passwd/workflows/Testing%20with%20pytest/badge.svg?event=push)](https://github.com/bsoyka/passwd/actions) [![Gitter](https://badges.gitter.im/bsoyka/passwd.svg)](https://gitter.im/bsoyka/passwd)
[![Testing with pytest](https://github.com/bsoyka/passwd/workflows/Testing%20with%20pytest/badge.svg?event=push)](https://github.com/bsoyka/passwd/actions)
[![PyPI Version](https://img.shields.io/pypi/v/passwd)](https://pypi.org/project/passwd)
[![MIT License](https://img.shields.io/pypi/l/passwd)](LICENSE)
[![GitHub Issues](https://img.shields.io/github/issues/bsoyka/passwd)](https://github.com/bsoyka/passwd/issues)
[![Chat on Gitter](https://img.shields.io/gitter/room/bsoyka/passwd)](https://gitter.im/bsoyka/passwd)

Assorted utilities for gracefully handling and generating passwords

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.2.0"
__version__ = "0.2.1"

import hashlib
from collections import Counter
Expand Down

0 comments on commit cc77e44

Please sign in to comment.