Version 0.1.0

dev 0.1.0
Andrew Cassidy 3 years ago
parent 0279d89367
commit 06b2815d19

@ -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 }}

@ -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

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

Loading…
Cancel
Save