From 1d07ab97e90f8fb7ac73df641de0da25c61431b0 Mon Sep 17 00:00:00 2001 From: Jon Hadfield Date: Sun, 21 Apr 2024 14:27:08 +0100 Subject: [PATCH] bumps version and updates changelog. --- CHANGELOG.md | 5 +++++ README.md | 3 +++ setup.py | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 831d9cb..f175850 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Changelog ========= +1.0.6 + +- Add option to allow name duplication. Thanks [moonbuggy](https://github.com/moonbuggy) +- Add support for utf-8 + 1.0.5 - Fix repr and str output. Thanks [trim21](https://github.com/trim21). diff --git a/README.md b/README.md index 016e430..baf5205 100644 --- a/README.md +++ b/README.md @@ -5,12 +5,15 @@ python-hosts This is a python library for managing a hosts file. It enables you to add and remove entries, or import them from a file or URL. + +Changelog available [here](CHANGELOG.md). Documentation ------------- The docs are hosted on RTD (Read The Docs) here: . + Installation ------------ pip install python-hosts diff --git a/setup.py b/setup.py index c8f4adb..d74f0ec 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup from setuptools.command.test import test as TestCommand -version = "1.0.5" +version = "1.0.6" if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload -r pypi')