diff --git a/CHANGELOG.md b/CHANGELOG.md index 3dfce8d..312e472 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,5 +3,8 @@ All notable changes to this project will be documented in this file. Preferably use **Added**, **Changed**, **Removed** and **Fixed** topics in each release or unreleased log for a better organization. +## [1.0.1](https://github.com/quintoandar/hierarchical-conf/releases/tag/1.0.1) +Only load files if they exist in given directories (remove breaking in opposite cases) + ## [1.0.0](https://github.com/quintoandar/hierarchical-conf/releases/tag/1.0.0) First modules and entities of Hierarchical Conf package. diff --git a/setup.py b/setup.py index 095959c..902de2a 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages __package_name__ = "hierarchical_conf" -__version__ = "1.0.0" +__version__ = "1.0.1" __repository_url__ = "https://github.com/quintoandar/hierarchical-conf" @@ -19,7 +19,13 @@ description="A tool for loading settings from files hierarchically", long_description=readme, long_description_content_type="text/markdown", - keywords="hierarchical-conf", + keywords=[ + "hierarchical-conf", + "configuration by environment", + "configuration files", + "configuration as code", + "hierarchical configuration", + ], version=__version__, url=__repository_url__, packages=find_packages(