From c284cdb57e297318937e1259053cfbcb470ea1d7 Mon Sep 17 00:00:00 2001 From: Jacob Cook Date: Sun, 6 Mar 2022 17:03:18 -0500 Subject: [PATCH] 1.5.7 --- CHANGELOG | 4 ++++ CONTRIBUTING.md | 2 +- README.md | 2 +- setup.py | 4 ++-- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8fe13de..3e3e7d3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [1.5.7] - 2022-03-06 +### Features +- Consider parent logging settings and use module name for logging (thanks @chikko80!) + ## [1.5.6] - 2021-03-20 ### Fixed - Fixed additional bugs in parsing lines with semicolons or curly braces when quotation marks are involved diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index a5c6298..1f3f580 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ If you're reading this, you'd like to contribute to one of my open source projec ### General Resources * **[Github](https://github.com/peakwinter/python-nginx)** is the primary destination for this project's source code repository, issue tracker, and contribution management (pull requests). - * Testing infrastructure / CI can be found at **[Travis-CI](https://travis-ci.org/peakwinter/python-nginx)**. + * Testing infrastructure / CI can be found in the **[Github Action](https://github.com/peakwinter/python-nginx/blob/master/.github/workflows/ci.yml)**. * Documentation for development is kept in `README.md`, changelogs in `CHANGELOG`. diff --git a/README.md b/README.md index 9ae8e2a..665e62a 100755 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## python-nginx -[![](https://travis-ci.org/peakwinter/python-nginx.svg?branch=master)](https://travis-ci.org/peakwinter/python-nginx) +![build](https://github.com/peakwinter/python-nginx/actions/workflows/ci.yml/badge.svg) A module for easily creating and modifying nginx serverblock configurations in Python (including comments!). diff --git a/setup.py b/setup.py index fc27bc3..79c350e 100755 --- a/setup.py +++ b/setup.py @@ -4,14 +4,14 @@ setup( name='python-nginx', - version='1.5.6', + version='1.5.7', description='Create and modify nginx serverblock configs in Python', author='Jacob Cook', author_email='jacob@peakwinter.net', url='https://github.com/peakwinter/python-nginx', py_modules=['nginx'], keywords=['nginx', 'web servers', 'serverblock', 'server block'], - download_url='https://github.com/peakwinter/python-nginx/archive/1.5.4.zip', + download_url='https://github.com/peakwinter/python-nginx/archive/1.5.7.zip', license='GPLv3', classifiers=[ "Development Status :: 5 - Production/Stable",