-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed wrong line offset when deleting peers; created bugfix version 0…
….1.3
- Loading branch information
Henri
committed
Jul 28, 2020
1 parent
b103437
commit bec838f
Showing
8 changed files
with
58 additions
and
11 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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Changelog | ||
|
||
All notable changes to this project are documented in this file. | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
- n/a | ||
|
||
### Changed | ||
- n/a | ||
|
||
### Fixed | ||
- n/a | ||
|
||
## [0.1.3] - 2020-07-28 | ||
|
||
### Fixed | ||
|
||
- Extended tests to detect wrong line offset when deleting peers. | ||
- Fixed wrong line offset when deleting peers. | ||
|
||
## [0.1.2] - 2020-07-11 | ||
|
||
### Added | ||
|
||
- Prepared for first public release to PyPi. | ||
|
||
## [0.1.1] - 2020-07-11 | ||
|
||
### Added | ||
|
||
- First public release to Github. |
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
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -7,13 +7,13 @@ | |
|
||
setup_kwargs = { | ||
'name': 'wgconfig', | ||
'version': '0.1.2', | ||
'version': '0.1.3', | ||
'author': 'Dirk Henrici', | ||
'author_email': '[email protected]', | ||
'description': 'parsing and writing WireGuard configuration files', | ||
'long_description': long_description, | ||
'long_description_content_type': 'text/markdown', | ||
'url': 'https://www.github.com/towalink/', | ||
'url': 'https://www.github.com/towalink/wgconfig', | ||
'packages': setuptools.find_packages(), | ||
'classifiers': [ | ||
'Programming Language :: Python', | ||
|
@@ -27,9 +27,10 @@ | |
'Intended Audience :: Information Technology' | ||
], | ||
'python_requires': '>=3.5', | ||
'keywords': 'WireGuard configuration wg', | ||
'keywords': 'WireGuard configuration config wg', | ||
'project_urls': { | ||
'Repository': 'https://www.github.com/towalink/', | ||
'Repository': 'https://www.github.com/towalink/wgconfig', | ||
'PyPi': 'https://pypi.org/project/wgconfig/' | ||
}, | ||
} | ||
|
||
|
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