Skip to content

Commit 2c4b20b

Browse files
author
Lucas Fonseca
authored
Release 1.0.1 (#21)
1 parent fc30c31 commit 2c4b20b

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@ All notable changes to this project will be documented in this file.
33

44
Preferably use **Added**, **Changed**, **Removed** and **Fixed** topics in each release or unreleased log for a better organization.
55

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+
69
## [1.0.0](https://github.com/quintoandar/hierarchical-conf/releases/tag/1.0.0)
710
First modules and entities of Hierarchical Conf package.

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22

33
__package_name__ = "hierarchical_conf"
4-
__version__ = "1.0.0"
4+
__version__ = "1.0.1"
55
__repository_url__ = "https://github.com/quintoandar/hierarchical-conf"
66

77

@@ -19,7 +19,13 @@
1919
description="A tool for loading settings from files hierarchically",
2020
long_description=readme,
2121
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+
],
2329
version=__version__,
2430
url=__repository_url__,
2531
packages=find_packages(

0 commit comments

Comments
 (0)