Skip to content

v0.1.0 - support weatherapi

Latest
Compare
Choose a tag to compare
@caarmen caarmen released this 03 Feb 14:33
· 2 commits to main since this release
3cf2f0d

Weatherapi.com support

This release brings support for the weatherapi: https://www.weatherapi.com/

To configure weatherapi, add a section as follows in your config.toml:

[weatherprovider]
name="weatherapi"
api_key="xxxx"

Weatherstack migration

⚠️ Note that this release introduces a breaking change for the config.toml file.

Now, instead of a weatherstack section, there's a weatherprovider section.
To keep using weatherstack, follow this migration:

Previously:

[weatherstack]
api_key="xxxx"

Now:

[weatherprovider]
name="weatherstack"
api_key="xxxx"

PRs

Full Changelog: v0.0.10...v0.1.0