Skip to content

Commit

Permalink
Merge branch 'hotfix/0.5.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
SkypLabs committed Aug 19, 2023
2 parents 0e171b2 + 525e662 commit d558555
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/test_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,19 @@ jobs:
- name: Check out code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade build setuptools wheel
- name: Build Python package
run: python -m build

- name: Publish to TestPyPI
uses: pypa/[email protected]
with:
Expand All @@ -119,6 +132,19 @@ jobs:
- name: Check out code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade build setuptools wheel
- name: Build Python package
run: python -m build

- name: Publish to PyPI
uses: pypa/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "hdlcontroller"
version = "0.4.1"
version = "0.5.1"
description = "HDLC controller"
readme = "README.rst"
requires-python = ">= 3.7, <4"
Expand Down

0 comments on commit d558555

Please sign in to comment.