Skip to content

Commit

Permalink
Release 1.0.1 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Fonseca authored Aug 18, 2022
1 parent fc30c31 commit 2c4b20b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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"


Expand All @@ -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(
Expand Down

0 comments on commit 2c4b20b

Please sign in to comment.