Skip to content

Commit c284cdb

Browse files
committed
1.5.7
1 parent 1377ea7 commit c284cdb

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [1.5.7] - 2022-03-06
6+
### Features
7+
- Consider parent logging settings and use module name for logging (thanks @chikko80!)
8+
59
## [1.5.6] - 2021-03-20
610
### Fixed
711
- Fixed additional bugs in parsing lines with semicolons or curly braces when quotation marks are involved

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ If you're reading this, you'd like to contribute to one of my open source projec
66
### General Resources
77

88
* **[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).
9-
* Testing infrastructure / CI can be found at **[Travis-CI](https://travis-ci.org/peakwinter/python-nginx)**.
9+
* Testing infrastructure / CI can be found in the **[Github Action](https://github.com/peakwinter/python-nginx/blob/master/.github/workflows/ci.yml)**.
1010
* Documentation for development is kept in `README.md`, changelogs in `CHANGELOG`.
1111

1212

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## python-nginx
22

3-
[![](https://travis-ci.org/peakwinter/python-nginx.svg?branch=master)](https://travis-ci.org/peakwinter/python-nginx)
3+
![build](https://github.com/peakwinter/python-nginx/actions/workflows/ci.yml/badge.svg)
44

55
A module for easily creating and modifying nginx serverblock configurations in Python (including comments!).
66

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
setup(
66
name='python-nginx',
7-
version='1.5.6',
7+
version='1.5.7',
88
description='Create and modify nginx serverblock configs in Python',
99
author='Jacob Cook',
1010
author_email='[email protected]',
1111
url='https://github.com/peakwinter/python-nginx',
1212
py_modules=['nginx'],
1313
keywords=['nginx', 'web servers', 'serverblock', 'server block'],
14-
download_url='https://github.com/peakwinter/python-nginx/archive/1.5.4.zip',
14+
download_url='https://github.com/peakwinter/python-nginx/archive/1.5.7.zip',
1515
license='GPLv3',
1616
classifiers=[
1717
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)