feat: release v0.5.5
This commit is contained in:
parent
2c29c725e5
commit
9cd927cc8e
5 changed files with 23 additions and 11 deletions
14
CHANGELOG.md
14
CHANGELOG.md
|
@ -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
|
||||
|
||||
|
|
14
README.md
14
README.md
|
@ -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/
|
||||
|
|
|
@ -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: {}
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
api: "0.13"
|
||||
api_compatibility:
|
||||
- "14"
|
||||
space: Example
|
||||
logo: https://example.org/logo.png
|
||||
url: https://example.org
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
|
||||
__version__ = '0.5.4'
|
||||
__version__ = '0.5.5'
|
||||
|
|
Loading…
Reference in a new issue