-
Notifications
You must be signed in to change notification settings - Fork 252
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added .vscode and .python-version to gitignore * Added Changelog for v4.2.1 * Bump version: 4.2.0 → 4.2.1
- Loading branch information
Showing
4 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,5 @@ cover/ | |
htmlcov/ | ||
.cache/ | ||
.coverage | ||
.vscode/ | ||
.python-version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,10 @@ | |
|
||
|
||
import sys | ||
|
||
from . import context | ||
|
||
VERSION = (4, 2, 0) | ||
VERSION = (4, 2, 1) | ||
__version__ = '.'.join(map(str, VERSION[0:4])) + "".join(VERSION[4:]) | ||
__author__ = 'R Oudkerk / Python Software Foundation' | ||
__author_email__ = '[email protected]' | ||
|