Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.10.0
current_version = 1.10.1
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ repos:
- id: pretty-format-json
args:
- --autofix
exclude: ^ui/
- repo: https://github.com/psf/black
rev: 25.11.0
hooks:
Expand Down Expand Up @@ -86,7 +87,6 @@ repos:
hooks:
- id: prettier
files: ^ui/
exclude: \.json$
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.50.0
hooks:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "takrmapi"
version = "1.10.0"
version = "1.10.1"
description = "RASENMAEHER integration API for TAK server"
authors = ["Eero af Heurlin <rambo@iki.fi>", "Ari Karhunen <FIXME@example.com>"]
homepage = "https://github.com/pvarki/python-tak-rmapi"
Expand Down
2 changes: 1 addition & 1 deletion src/takrmapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""RASENMAEHER integration API for TAK server"""

__version__ = "1.10.0" # NOTE Use `bump2version --config-file patch` to bump versions correctly
__version__ = "1.10.1" # NOTE Use `bump2version --config-file patch` to bump versions correctly
6 changes: 3 additions & 3 deletions src/takrmapi/api/description.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ async def return_product_description_extended(language: str) -> ProductDescripti
icon="/ui/tak/taklogo.svg",
description="Tilannekuvajärjestelmä",
language="fi",
docs="https://pvarki.github.io/Docusaurus-docs/docs/android/deployapp/home/",
docs="https://docs.pvarki.fi/",
component=ProductComponent(type="component", ref="/ui/tak/remoteEntry.js"),
)
if language == "sv":
Expand All @@ -100,7 +100,7 @@ async def return_product_description_extended(language: str) -> ProductDescripti
icon="/ui/tak/taklogo.svg",
description="Situationsbildsystem",
language="sv",
docs="https://pvarki.github.io/Docusaurus-docs/docs/android/deployapp/home/",
docs="https://docs.pvarki.fi/",
component=ProductComponent(type="component", ref="/ui/tak/remoteEntry.js"),
)
# Fall back to English
Expand All @@ -110,7 +110,7 @@ async def return_product_description_extended(language: str) -> ProductDescripti
icon="/ui/tak/taklogo.svg",
description="Situational awareness system",
language="en",
docs="https://pvarki.github.io/Docusaurus-docs/docs/android/deployapp/home/",
docs="https://docs.pvarki.fi/",
component=ProductComponent(type="component", ref="/ui/tak/remoteEntry.js"),
)

Expand Down
2 changes: 1 addition & 1 deletion tests/test_takrmapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

def test_version() -> None:
"""Make sure version matches expected"""
assert __version__ == "1.10.0"
assert __version__ == "1.10.1"


@pytest.fixture(autouse=True)
Expand Down
Loading