diff --git a/CHANGELOG b/CHANGELOG index 2151334..be33882 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.5.5] - 2021-03-11 +### Fixed +- Fixed bugs in parsing lines that contain a semicolon or curly brace inside of quotes +- Fixed bug in creating new Keys in which the value isn't a string but is still stringable (int) + ## [1.5.4] - 2020-08-21 ### Fixed - Warn user if successful parsing of a config is impossible due to missing semicolon (thanks @fulder!) diff --git a/setup.py b/setup.py index c4b659a..6b5c74e 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='python-nginx', - version='1.5.4', + version='1.5.5', description='Create and modify nginx serverblock configs in Python', author='Jacob Cook', author_email='jacob@peakwinter.net',