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
|
# 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 -->
|
<!-- BEGIN RELEASE v0.5.4 -->
|
||||||
## Version 0.5.4
|
## Version 0.5.4
|
||||||
|
|
||||||
|
|
14
README.md
14
README.md
|
@ -1,7 +1,5 @@
|
||||||
# SpaceAPI Server
|
# 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
|
A lightweight server for [SpaceAPI][spaceapi] endpoints. Includes
|
||||||
support for pluggable templating, so dynamic content, like sensor
|
support for pluggable templating, so dynamic content, like sensor
|
||||||
values, can be added.
|
values, can be added.
|
||||||
|
@ -92,14 +90,12 @@ sensors:
|
||||||
|
|
||||||
### 0. Download
|
### 0. Download
|
||||||
|
|
||||||
Head over to the [Releases][releases], download and install the
|
Head over to the [Packages][packages] tab, download and install the
|
||||||
package that suits your needs. Alternatively, clone the repo and get
|
package that suits your needs or set up the Debian repository.
|
||||||
started. There also is a Container Image available through the
|
Alternatively, clone the repo and get started.
|
||||||
[Gitlab registry][registry] tagged as
|
|
||||||
`registry.gitlab.com/s3lph/spaceapi-server`.
|
|
||||||
|
|
||||||
The remainder of this document assumes that you installed the
|
The remainder of this document assumes that you installed the
|
||||||
server as an OS distribution package.
|
server as a Debian package.
|
||||||
|
|
||||||
### 1. Overview
|
### 1. Overview
|
||||||
|
|
||||||
|
@ -307,7 +303,7 @@ state: !lookup_sensor
|
||||||
|
|
||||||
|
|
||||||
[main]: https://gitlab.com/s3lph/spaceapi-server/commits/main
|
[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/
|
[spaceapi]: https://spaceapi.io/
|
||||||
[pypi-bottle]: https://pypi.org/project/bottle/
|
[pypi-bottle]: https://pypi.org/project/bottle/
|
||||||
[pypi-yaml]: https://pypi.org/project/PyYAML/
|
[pypi-yaml]: https://pypi.org/project/PyYAML/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
address: "::"
|
address: "::"
|
||||||
port: 8080
|
port: 8080
|
||||||
template: /etc/spaceapi-server/template.json
|
template: /etc/spaceapi-server/template.yaml
|
||||||
plugins_dir: /etc/spaceapi-server/plugins
|
plugins_dir: /etc/spaceapi-server/plugins
|
||||||
plugins: {}
|
plugins: {}
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
---
|
---
|
||||||
api: "0.13"
|
api: "0.13"
|
||||||
|
api_compatibility:
|
||||||
|
- "14"
|
||||||
space: Example
|
space: Example
|
||||||
logo: https://example.org/logo.png
|
logo: https://example.org/logo.png
|
||||||
url: https://example.org
|
url: https://example.org
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
|
|
||||||
__version__ = '0.5.4'
|
__version__ = '0.5.5'
|
||||||
|
|
Loading…
Reference in a new issue