Version 0.1.0

This commit is contained in:
Andrew Cassidy 2021-04-16 21:47:21 -07:00
parent 0279d89367
commit 06b2815d19
3 changed files with 46 additions and 1 deletions

36
.github/workflows/python-publish.yml vendored Normal file
View File

@ -0,0 +1,36 @@
# This workflow will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: Upload Python Package
on:
release:
types: [ published ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Install pypa/build
run: python -m pip install build --user
- name: Build a binary wheel and source tarball
run: python -m build --sdist --wheel --outdir dist/
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}

9
CHANGELOG.md Normal file
View File

@ -0,0 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file
## 0.1.0 - 2021-04-16
First release
### Added
- `yaclog.read()` method to parse changelog files

View File

@ -11,7 +11,7 @@ url = https://github.com/drewcassidy/yet-another-changelog
keywords = changelog, commandline, markdown keywords = changelog, commandline, markdown
classifiers = classifiers =
Development Status :: 3 - Alpha Development Status :: 4 - Beta
Intended Audience :: Developers Intended Audience :: Developers
License :: OSI Approved :: GNU Affero General Public License v3 License :: OSI Approved :: GNU Affero General Public License v3
Operating System :: OS Independent Operating System :: OS Independent