File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,8 @@ All notable changes to this project will be documented in this file.
3
3
4
4
Preferably use ** Added** , ** Changed** , ** Removed** and ** Fixed** topics in each release or unreleased log for a better organization.
5
5
6
+ ## [ 1.0.1] ( https://github.com/quintoandar/hierarchical-conf/releases/tag/1.0.1 )
7
+ Only load files if they exist in given directories (remove breaking in opposite cases)
8
+
6
9
## [ 1.0.0] ( https://github.com/quintoandar/hierarchical-conf/releases/tag/1.0.0 )
7
10
First modules and entities of Hierarchical Conf package.
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
3
3
__package_name__ = "hierarchical_conf"
4
- __version__ = "1.0.0 "
4
+ __version__ = "1.0.1 "
5
5
__repository_url__ = "https://github.com/quintoandar/hierarchical-conf"
6
6
7
7
19
19
description = "A tool for loading settings from files hierarchically" ,
20
20
long_description = readme ,
21
21
long_description_content_type = "text/markdown" ,
22
- keywords = "hierarchical-conf" ,
22
+ keywords = [
23
+ "hierarchical-conf" ,
24
+ "configuration by environment" ,
25
+ "configuration files" ,
26
+ "configuration as code" ,
27
+ "hierarchical configuration" ,
28
+ ],
23
29
version = __version__ ,
24
30
url = __repository_url__ ,
25
31
packages = find_packages (
You can’t perform that action at this time.
0 commit comments