diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4067027..907db17 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,7 +9,7 @@ on: - '**.py' jobs: - ruff: + lint: name: "Lint" runs-on: "ubuntu-latest" steps: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 93092ca..c8850ee 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,8 +9,8 @@ on: - '**.py' jobs: - ruff: - name: "Ruff" + test: + name: "Test" runs-on: "ubuntu-latest" steps: - name: "Checkout the repository" diff --git a/custom_components/audiobookshelf/const.py b/custom_components/audiobookshelf/const.py index 2e2da10..a91238a 100644 --- a/custom_components/audiobookshelf/const.py +++ b/custom_components/audiobookshelf/const.py @@ -2,7 +2,7 @@ from homeassistant.const import Platform -VERSION = "v0.2.1" +VERSION = "v0.2.2" ISSUE_URL = "https://github.com/wolffshots/hass-audiobookshelf/issues" DOMAIN = "audiobookshelf" PLATFORMS: list[Platform] = [Platform.SENSOR] diff --git a/custom_components/audiobookshelf/manifest.json b/custom_components/audiobookshelf/manifest.json index 45c92ad..a0e50e8 100644 --- a/custom_components/audiobookshelf/manifest.json +++ b/custom_components/audiobookshelf/manifest.json @@ -13,5 +13,5 @@ "requirements": [ "aiohttp" ], - "version": "0.2.1" + "version": "0.2.2" } \ No newline at end of file