Skip to content

Commit

Permalink
Changelog and pypi release.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
tjwalch committed Dec 14, 2021
1 parent ad100b1 commit 1803fd3
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Upload Python Package

on:
release:
types: [published]

jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install pypa/build
run: >-
python -m
pip install
build
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}
11 changes: 9 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
Changelog
=========

Version 0.4
-----------
* Adding templatetag as alternative to middleware (by Kemais Ehlers)
* Improve configuration through environment variables (by Kurtus Jensen)
* Bugfix for ``--ignore_file_extenstions`` (by Gou Simada)
* Bugfix for Python >=3.8 on Windows (by Thomas Dunne)
* Workaround for posix path handling for Python >= 3.8 on GNU/Linux (by Damjan Dimitrioski)

Version 0.3.3
------------
Addition of ignored file extensions

Addition of ignored file extensions (by Travis Swientek)

Version 0.1
------------
Expand Down

0 comments on commit 1803fd3

Please sign in to comment.