diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -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
diff --git a/opench-meteo.cabal b/opench-meteo.cabal
--- a/opench-meteo.cabal
+++ b/opench-meteo.cabal
@@ -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.
diff --git a/src/Data/Meteo/Swiss/Urls.hs b/src/Data/Meteo/Swiss/Urls.hs
--- a/src/Data/Meteo/Swiss/Urls.hs
+++ b/src/Data/Meteo/Swiss/Urls.hs
@@ -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 
