opench-meteo 0.1.1.0 → 0.2.0.0
raw patch · 3 files changed
+11/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ChangeLog.md +8/−1
- opench-meteo.cabal +1/−1
- src/Data/Meteo/Swiss/Urls.hs +2/−2
ChangeLog.md view
@@ -1,5 +1,12 @@ # Revision history for opench-meteo -## 0.1.0.0 -- 2017-03-25+## 0.1.1.0 -- 2017-03-25 * First version. Released on an unsuspecting world.+++## 0.2.0.0 -- 2017-12-27++* Added: stack.yaml file+* opendata.netcetera.com is now on https+* update bounds for GHC 8.2.2
opench-meteo.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: opench-meteo-version: 0.1.1.0+version: 0.2.0.0 synopsis: A Haskell implementation of the Swiss Meteo Net data API description: OpenData SMN is a REST API for <http://www.meteoswiss.admin.ch/home/measurement-and-forecasting-systems/land-based-stations/automatisches-messnetz.html SwissMetNet > data. The module Data.Meteo.Swiss contains the main documentation.
src/Data/Meteo/Swiss/Urls.hs view
@@ -15,12 +15,12 @@ -- | Return the URL to retrieve all meteo data from all stations for the last 10 minutes. urlDataAll :: T.Text-urlDataAll = "http://opendata.netcetera.com:80/smn/smn/"+urlDataAll = "https://opendata.netcetera.com/smn/smn/" -- | Return the URL to retrieve the meteo data for a given station for the last 10 minutes. urlDataStat :: T.Text -- ^ 3-char all upper-case station code -> T.Text-urlDataStat stat = "http://opendata.netcetera.com:80/smn/smn/" <> stat+urlDataStat stat = "https://opendata.netcetera.com/smn/smn/" <> stat -- | Return the URL to retrieve the documentation sheet for a given station urlDocuStat :: T.Text -- ^ 3-char all upper-case station code