Skip to content

Commit

Permalink
Merge pull request earthobservations#127 from earthobservations/bump-…
Browse files Browse the repository at this point in the history
…version-to-0.4.0

Bump version to 0.4.0
  • Loading branch information
gutzbenj committed Aug 3, 2020
2 parents 9c3ddd5 + ac4315d commit 526857e
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 12 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ Changelog
Current
=======

...

0.4.0 (03.08.2020)
==================

- extend DWDStationRequest to take multiple parameters as request
- add documentation at readthedocs.io
- [cli] Adjust methods to work with multiple parameters
Expand Down
20 changes: 11 additions & 9 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ Introduction to wetterdienst
:target: https://github.com/earthobservations/wetterdienst/actions?workflow=Tests
.. image:: https://codecov.io/gh/earthobservations/wetterdienst/branch/master/graph/badge.svg
:target: https://codecov.io/gh/earthobservations/wetterdienst
.. image:: https://readthedocs.org/projects/wetterdienst/badge/?version=latest
:target: https://wetterdienst.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black


.. image:: https://img.shields.io/pypi/pyversions/wetterdienst.svg
:target: https://pypi.python.org/pypi/wetterdienst/
.. image:: https://img.shields.io/pypi/v/wetterdienst.svg
Expand All @@ -15,13 +22,9 @@ Introduction to wetterdienst
:target: https://pepy.tech/project/wetterdienst/month
.. image:: https://img.shields.io/github/license/earthobservations/wetterdienst
:target: https://github.com/earthobservations/wetterdienst/blob/master/LICENSE.rst
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
.. image:: https://zenodo.org/badge/160953150.svg
:target: https://zenodo.org/badge/latestdoi/160953150
.. image:: https://readthedocs.org/projects/wetterdienst/badge/?version=latest
:target: https://wetterdienst.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status


Welcome to wetterdienst, your friendly weather service library for Python from the
neighbourhood! We are an group of people, who try to make access to weather data in
Expand Down Expand Up @@ -53,8 +56,7 @@ may be of special interest for you.
Getting started
***************

We have set Python >= 3.6 as requirement which is automatically tested for
Linux/MACOS/Windows. Simply run
Run the following

.. code-block:: Python
Expand All @@ -75,8 +77,8 @@ observed station data call
period_type=PeriodType.HISTORICAL
)
For other examples and functionality such as a Docker image and a client take a look at
the
For other examples and functionality such getting metadata, running the library in a
Docker image and a client take a look at the
`API <https://wetterdienst.readthedocs.io/en/latest/pages/api.html>`_
section, which will be constantly updated with new functions. Also don't miss out our
`examples <https://github.com/earthobservations/wetterdienst/tree/master/example>`_
Expand Down
4 changes: 3 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
# sys.path.insert(0, os.path.abspath('.'))
import sphinx_rtd_theme

from wetterdienst import __version__


# -- Project information -----------------------------------------------------

Expand All @@ -23,7 +25,7 @@
author = 'Benjamin Gutzmann, Daniel Lassahn, Andreas Motl'

# The full version, including alpha/beta/rc tags
release = '0.3.0'
release = __version__


# -- General configuration ---------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
sphinx_rtd_theme
sphinx_rtd_theme
importlib_metadata==1.6.1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wetterdienst"
version = "0.3.0"
version = "0.4.0"
description = "Python library to ease access to open weather data"
authors = [
"Benjamin Gutzmann <gutzemann@gmail.com>",
Expand Down

0 comments on commit 526857e

Please sign in to comment.