feat: release v0.5.5
All checks were successful
/ test (push) Successful in 1m12s
/ codestyle (push) Successful in 1m0s
/ build_wheel (push) Successful in 1m20s
/ build_debian (push) Successful in 2m31s

This commit is contained in:
s3lph 2023-12-19 04:45:19 +01:00
parent 2c29c725e5
commit 9cd927cc8e
Signed by: s3lph
GPG key ID: 0AA29A52FB33CFB5
5 changed files with 23 additions and 11 deletions

View file

@ -1,5 +1,19 @@
# SpaceAPI Server Changelog
<!-- BEGIN RELEASE v0.5.5 -->
## Version 0.5.5
Bugfix & Maintenance release
### Changes
<!-- BEGIN CHANGES 0.5.5 -->
- Add SpaceAPI Schema v14 in example
- Fix template filename in example config.yaml
<!-- END CHANGES 0.5.5 -->
<!-- END RELEASE v0.5.5 -->
<!-- BEGIN RELEASE v0.5.4 -->
## Version 0.5.4

View file

@ -1,7 +1,5 @@
# SpaceAPI Server
[![status-badge](https://woodpecker.kabelsalat.ch/api/badges/85/status.svg)](https://woodpecker.kabelsalat.ch/repos/85)
A lightweight server for [SpaceAPI][spaceapi] endpoints. Includes
support for pluggable templating, so dynamic content, like sensor
values, can be added.
@ -92,14 +90,12 @@ sensors:
### 0. Download
Head over to the [Releases][releases], download and install the
package that suits your needs. Alternatively, clone the repo and get
started. There also is a Container Image available through the
[Gitlab registry][registry] tagged as
`registry.gitlab.com/s3lph/spaceapi-server`.
Head over to the [Packages][packages] tab, download and install the
package that suits your needs or set up the Debian repository.
Alternatively, clone the repo and get started.
The remainder of this document assumes that you installed the
server as an OS distribution package.
server as a Debian package.
### 1. Overview
@ -307,7 +303,7 @@ state: !lookup_sensor
[main]: https://gitlab.com/s3lph/spaceapi-server/commits/main
[releases]: https://gitlab.com/s3lph/spaceapi-server/-/releases
[packages]: https://git.kabelsalat.ch/s3lph/spaceapi-server/packages
[spaceapi]: https://spaceapi.io/
[pypi-bottle]: https://pypi.org/project/bottle/
[pypi-yaml]: https://pypi.org/project/PyYAML/

View file

@ -1,6 +1,6 @@
---
address: "::"
port: 8080
template: /etc/spaceapi-server/template.json
template: /etc/spaceapi-server/template.yaml
plugins_dir: /etc/spaceapi-server/plugins
plugins: {}

View file

@ -1,5 +1,7 @@
---
api: "0.13"
api_compatibility:
- "14"
space: Example
logo: https://example.org/logo.png
url: https://example.org

View file

@ -1,2 +1,2 @@
__version__ = '0.5.4'
__version__ = '0.5.5'