Skip to content

Commit 19f4e72

Browse files
authored
Merge pull request #2 from vfrazao-ns1/0.1.2/bug-fixes
0.1.2/bug fixes
2 parents 19b280f + 70dc831 commit 19f4e72

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# DHCP Python Changelog
22

3+
## 0.1.2 (Jan 29 2020)
4+
5+
* Minor fixes and changes
6+
37
## 0.1.1 (Jan 25 2020)
48

59
* Minor bug fixes

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
include README.md
2+
include dhcppython/runtime_assets/options.csv
3+
include dhcppython/runtime_assets/oui.txt

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DHCP Python
22

3-
Version 0.1.1
3+
Version 0.1.2
44

55
A Python implementation of a DHCP client and the tools to manipulate DHCP packets. Includes:
66

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
EMAIL = ''
1616
AUTHOR = 'Victor Frazao'
1717
REQUIRES_PYTHON = '>=3.8.0'
18-
VERSION = '0.1.1'
18+
VERSION = '0.1.2'
1919

2020
# What packages are required for this module to be executed?
2121
REQUIRED = []
@@ -89,7 +89,6 @@ def run(self):
8989
python_requires=REQUIRES_PYTHON,
9090
url=URL,
9191
packages=find_packages(exclude=('tests',)),
92-
9392
install_requires=REQUIRED,
9493
extras_require=EXTRAS,
9594
include_package_data=True,

0 commit comments

Comments
 (0)