-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from cmeissner/issue/38
increase error handling
- Loading branch information
Showing
8 changed files
with
115 additions
and
3 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,6 @@ | ||
[bumpversion] | ||
commit = True | ||
tag = False | ||
current_version = 1.0.1 | ||
|
||
[bumpversion:file:setup.py] |
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,8 @@ | ||
--- | ||
exclude_paths: | ||
- '.github/**' | ||
- '.vscode/**' | ||
- 'CHANGELOG.md' | ||
- 'CONTRIBUTING.md' | ||
- 'docs/**' | ||
- 'README.md' |
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,4 @@ | ||
{ | ||
"MD013": false, | ||
"MD024": false | ||
} |
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,91 @@ | ||
# phpypam CHANGELOG | ||
|
||
## Unreleased | ||
|
||
--- | ||
|
||
### New | ||
|
||
### Changes | ||
|
||
### Fixes | ||
|
||
### Breaks | ||
|
||
## 1.0.1 - (2021-01-04) | ||
|
||
### New | ||
|
||
* add markdownlint config | ||
* add changelog | ||
|
||
### Fixes | ||
|
||
* fix exception handling for connection errors | ||
|
||
## 1.0.0 | ||
|
||
### New | ||
|
||
* documentation tool chain (#27) | ||
* Merge pull request #28 from cmeissner/contributing\_and\_documentation | ||
|
||
## 0.1.7 | ||
|
||
### Fixes | ||
|
||
* We now should evaluate almost all not found messages and raise the correct Exception. | ||
|
||
## 0.1.6 | ||
|
||
### New | ||
|
||
* handle not found execption for vrf | ||
|
||
## 0.1.5 | ||
|
||
### Fixes | ||
|
||
* return controller paths not names | ||
|
||
### Breakes | ||
|
||
* returns controller paths not names | ||
|
||
## 0.1.4 | ||
|
||
### New | ||
|
||
* some project stuff | ||
|
||
## 0.1.3 | ||
|
||
### Fixes | ||
|
||
* fix typo | ||
|
||
## 0.1.2 | ||
|
||
### New | ||
|
||
* detailed exception handling | ||
|
||
## 0.1.1 | ||
|
||
### Fixes | ||
|
||
* Add exception handling for stupid error reporting of non existing subnets | ||
|
||
## 0.1.0 | ||
|
||
### New | ||
|
||
* First more or less productive release. Feel free to report bugs and issues | ||
|
||
## 0.0.2 | ||
|
||
### Changes | ||
|
||
* add controllers method | ||
* add first simple tests | ||
* extend documentation |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
wheel | ||
changelog-cli | ||
flake8 | ||
flake8-colors | ||
flake8-docstrings | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name="phpypam", | ||
version="1.0.0", | ||
version="1.0.1", | ||
author="Christian Meißner", | ||
author_email="Christian Meißner <[email protected]>", | ||
description="Python API client library for phpIPAM installation", | ||
|