Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jadon committed Aug 12, 2023
1 parent 52c145d commit 79786ca
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion custom_components/audiobookshelf/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
NAME = "Audiobookshelf"
DOMAIN = "audiobookshelf"
DOMAIN_DATA = f"{DOMAIN}_data"
VERSION = "v0.0.1"
VERSION = "v0.0.2"

ATTRIBUTION = "Server by https://www.audiobookshelf.org/"
ISSUE_URL = "https://github.com/wolffshots/hass-audiobookshelf/issues"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/audiobookshelf/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"iot_class": "local_polling",
"issue_tracker": "https://github.com/wolffshots/hass-audiobookshelf/issues",
"requirements": [],
"version": "v0.0.1"
"version": "v0.0.2"
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ max-complexity = 15

[tool.poetry]
name = "audiobookshelf"
version = "1"
version = "v0.0.2"
description = "Audiobookshelf HA custom component"
authors = ["wolffshots <16850875+wolffshots@users.noreply.github.com>"]
readme = "README.md"
Expand Down
6 changes: 2 additions & 4 deletions tests/test_entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
import pytest
from pytest_homeassistant_custom_component.common import MockConfigEntry

from custom_components.audiobookshelf.const import (
DOMAIN,
)
from custom_components.audiobookshelf.const import DOMAIN, VERSION
from custom_components.audiobookshelf.entity import AudiobookshelfEntity

from .const import MOCK_CONFIG
Expand Down Expand Up @@ -35,7 +33,7 @@ def test_device_info(mock_coordinator: Mock) -> None:
assert entity.device_info == {
"identifiers": {("audiobookshelf", "audiobookshelf")},
"manufacturer": "Audiobookshelf",
"model": "v0.0.1",
"model": VERSION,
"name": "Audiobookshelf",
}

Expand Down

0 comments on commit 79786ca

Please sign in to comment.