Skip to content

Commit

Permalink
Release v4.5
Browse files Browse the repository at this point in the history
Upgrade GH actions for `none-shall-pass` and `pypi-publish`
  • Loading branch information
dormant-user committed May 29, 2024
1 parent ad2d4d7 commit 84d483c
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 30 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/markdown-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ on:

jobs:
none-shall-pass:
runs-on:
- self-hosted
- Ubuntu
runs-on: thevickypedia-default
steps:
- uses: actions/checkout@v4
- uses: thevickypedia/none-shall-pass@v5
31 changes: 5 additions & 26 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,30 +6,9 @@ on:
workflow_dispatch:

jobs:
deploy:

runs-on: self-hosted

pypi-publisher:
runs-on: thevickypedia-default
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 build twine
shell: bash
- name: Create packages
run: python -m build
shell: bash
- name: Run twine check
run: twine check dist/*
shell: bash
- name: Upload to pypi
env:
TWINE_USERNAME: ${{ secrets.PYPI_USER }}
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: twine upload dist/*.whl
shell: bash
- uses: thevickypedia/pypi-publisher@v3
env:
token: ${{ secrets.PYPI_TOKEN }}
2 changes: 1 addition & 1 deletion jarvis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from multiprocessing import current_process

version = "4.4.2"
version = "4.5"

install_script = os.path.join(os.path.dirname(__file__), "lib", "install.sh")

Expand Down
12 changes: 12 additions & 0 deletions release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Release Notes
=============

v4.5 (05/28/2024)
-----------------
- Includes stability improvements for IOT devices
- Improved installation experience focused to support only python 3.10 and 3.11
- Includes a new feature to host a proxy server for `GET` requests
- Onboard a new tool for notifications - `ntfy`
- Allows multiple websites for CORS origins
- Includes bug fixes and improved linting across the project
- Enables multiple notification channels for reminders
- Replaces in house module for car controls with `jlrpy`
- Includes frozen pypi packages for all supported devices

v4.4.2 (02/03/2024)
-------------------
- Bug fix on flaky response when all the lights fail to connect
Expand Down

0 comments on commit 84d483c

Please sign in to comment.