-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1d337c
commit 53a162e
Showing
2 changed files
with
13 additions
and
1 deletion.
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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# gns3fy Change History | ||
|
||
## 0.1.1 | ||
|
||
**Enhancement** | ||
- Adding `Gns3Connector` method `get_version` | ||
|
||
## 0.1.0 | ||
|
||
- Initial Push |
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,9 +1,16 @@ | ||
[tool.poetry] | ||
name = "gns3fy" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
description = "Python wrapper around GNS3 Server API" | ||
authors = ["David Flores <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/davidban77/gns3fy" | ||
homepage = "https://github.com/davidban77/gns3fy" | ||
keywords = ["network", "gns3"] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3.7", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.7" | ||
|