From a6287a9a2721847b7ad276d8369e25a2da3a3d4e Mon Sep 17 00:00:00 2001 From: Anand Joshi Date: Thu, 23 Feb 2023 13:30:12 +0900 Subject: [PATCH] update version to 2.6 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8944117..39c496f 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from distutils.core import setup setup(name='property', - version='2.5', + version='2.6', packages=['properties'], description='A python module to read a property file.Similar to PropertyPlaceholderConfigurer in spring (java).Example : https://github.com/anandjoshi91/pythonpropertyfileloader', long_description='https://github.com/anandjoshi91/pythonpropertyfileloader', @@ -9,5 +9,5 @@ author_email='anandhjoshi@outlook.com', keywords= ["property", "read-property-file", "property-interpolation"], license='MIT', - download_url='https://github.com/anandjoshi91/pythonpropertyfileloader/archive/refs/tags/2.5.zip' + download_url='https://github.com/anandjoshi91/pythonpropertyfileloader/archive/refs/tags/2.6.zip' )