Skip to content

Commit

Permalink
Merge pull request #2106 from custom-components/dev
Browse files Browse the repository at this point in the history
  • Loading branch information
alandtse authored Nov 5, 2023
2 parents c6bc025 + 49f6da3 commit a889c3b
Show file tree
Hide file tree
Showing 7 changed files with 227 additions and 233 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/semantic_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
git add custom_components/alexa_media/translations/*.json
git commit -m "docs: update localization" -a
- name: Python Semantic Release
uses: relekang/python-semantic-release@master
uses: relekang/python-semantic-release@v7.34.6
with:
github_token: ${{ secrets.GH_TOKEN }}
# Pack the alexa_media_player dir as a zip and upload to the release
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ on:
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write

steps:
- uses: actions/stale@v3
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
exempt-issue-labels: "help-wanted"
Expand All @@ -19,7 +22,7 @@ jobs:
stale-pr-message: "The PR has received no activity for 60 days and will be closed in a week."
stale-issue-label: "no-issue-activity"
stale-pr-label: "no-pr-activity"
- uses: actions/stale@v3
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 21
Expand All @@ -30,7 +33,7 @@ jobs:
there has been no activity in the last 3 weeks. It will not be
closed automatically.
stale-issue-label: "help wanted"
- uses: actions/stale@v3
- uses: actions/stale@v8
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 21
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ repos:
- hooks:
- id: black
repo: https://github.com/psf/black
rev: 23.9.1
rev: 23.10.1
- repo: https://github.com/pre-commit/mirrors-prettier
hooks:
- id: prettier
Expand Down
2 changes: 1 addition & 1 deletion custom_components/alexa_media/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
PERCENTAGE,
)

__version__ = "4.6.5"
__version__ = "4.7.7"
PROJECT_URL = "https://github.com/custom-components/alexa_media_player/"
ISSUE_URL = f"{PROJECT_URL}issues"
NOTIFY_URL = f"{PROJECT_URL}wiki/Configuration%3A-Notification-Component#use-the-notifyalexa_media-service"
Expand Down
4 changes: 2 additions & 2 deletions custom_components/alexa_media/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/custom-components/alexa_media_player/issues",
"loggers": ["alexapy", "authcaptureproxy"],
"requirements": ["alexapy==1.27.6", "packaging>=20.3", "wrapt>=1.14.0"],
"version": "4.6.5"
"requirements": ["alexapy==1.27.7", "packaging>=20.3", "wrapt>=1.14.0"],
"version": "4.7.7"
}
437 changes: 214 additions & 223 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "alexa_media_player"
version = "4.6.5"
version = "4.7.7"
description = "This is a custom component to allow control of Amazon Alexa devices in [Homeassistant](https://home-assistant.io) using the unofficial Alexa API."
authors = [
"Keaton Taylor <[email protected]>",
Expand All @@ -10,7 +10,7 @@ license = "Apache-2.0"

[tool.poetry.dependencies]
python = ">=3.11,<4.0"
alexapy = "1.27.6"
alexapy = "1.27.7"
aiohttp = ">=3.8.1"
packaging = ">=20.3"
wrapt = ">=1.12.1"
Expand Down

0 comments on commit a889c3b

Please sign in to comment.