Skip to content

Commit 6606ea2

Browse files
committed
Bump version for next release
1 parent 2efe476 commit 6606ea2

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ If you are using the PlatformIO environment for building
5757
* **NTP Client**: a NTP based time class written by Fabrice Weinberg
5858
* **OpenWeatherMap Client**: A REST client for the OpenWeatherMap.com service, providing weather information
5959
* **Aeris Client**: Client for the service provided by aerisweather.com. Fully functional initial version. After the Wunderground incident (see [upgrade notes](#upgrade-notes)) we first targeted Aeris before we settled with OpenWeatherMap. This code is unmaintained but will remain part of this library for the time being.
60-
* **Wunderground Client - DEPRECATED**: fetches current weather and forecast from wunderground.com. Please note: Wunderground stopped their free tier service and previous demos are now using the OpenWeatherMap client.
6160
* **Thingspeak Client**: fetches data from Thingspeak which you might have collected with another sensor node and posted there.
6261
* **Astronomy**: algorithms to calculate current lunar phase and illumination.
6362
* **SunMoonCalc**: a calculator for sun and moon properties for a given date & time and location. This implementation is port of a [Java class by T. Alonso Albi](http://conga.oan.es/~alonso/doku.php?id=blog:sun_moon_position) from OAN (Spain).
@@ -70,6 +69,8 @@ We will gladly list it here as third party library...
7069

7170
## Upgrade Notes
7271

72+
**Version 2, January 2020, removes WU support, see below**
73+
7374
**Replace Wunderground with OpenWeatherMap as weather data provider**
7475

7576
The weather information provider we used so far (Wunderground) [recently stopped their free tier](https://thingpulse.com/weather-underground-no-longer-providing-free-api-keys/) without previous notice on May 15, 2018. This release adds support for a new provider with a free tier for weather information: OpenWeatherMap.com. The basic demo (WeatherStationDemo) has been adapted to use this new API through the OpenWeatherMapCurrent and OpenWeatherMapForecast REST clients.
@@ -84,4 +85,4 @@ The ESP8266 OLED Library changed a lot with the latest release of version 3.0.0.
8485

8586
| Announcement | Module | Removal |
8687
|---------------|---------|----------|
87-
| 2018-06-13 | all **Wunderground** related code, see [our blog](https://thingpulse.com/hello-openweathermap-bye-bye-wunderground/) for details | June 2019 |
88+
| 2018-06-13 | all **Wunderground** related code, see [our blog](https://thingpulse.com/hello-openweathermap-bye-bye-wunderground/) for details | January 2020, version 2.0.0 |

library.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"url": "https://github.com/ThingPulse/esp8266-weather-station"
88
},
99
"authors": {
10-
"name": "Daniel Eichhorn",
11-
"url": "https://blog.squix.org"
10+
"name": "Daniel Eichhorn, ThingPulse",
11+
"url": "https://thingpulse.com"
1212
},
1313
"frameworks": "arduino",
1414
"platforms": [
1515
"espressif8266",
1616
"espressif32"
1717
],
18-
"version": "1.6.6"
18+
"version": "2.0.0"
1919
}

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=ESP8266 Weather Station
2-
version=1.6.6
2+
version=2.0.0
33
author=ThingPulse
44
maintainer=ThingPulse <[email protected]>
55
sentence=ESP8266 based internet connected Weather Station

0 commit comments

Comments
 (0)