Skip to content

Commit 764d5ce

Browse files
committed
set VERSION from 0.2.0 to 0.1.0rc1
1 parent e35c5ec commit 764d5ce

5 files changed

Lines changed: 16 additions & 10 deletions

File tree

GeoHealthCheck/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
# OTHER DEALINGS IN THE SOFTWARE.
2727
#
2828
# =================================================================
29-
__version__ = '0.2.0'
29+
__version__ = '0.1.0rc1'

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0-plugindevs82
1+
0.1.0rc1

docs/index.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ GeoHealthCheck
44
Overview
55
--------
66

7-
GeoHealthCheck is a Python application to support monitoring OGC services uptime,
7+
GeoHealthCheck (GHC) is a Python application to support monitoring OGC services uptime,
88
availability and Quality of Service (QoS).
99

1010
It can be used to monitor overall health of OGC services like WMS, WFS, WCS, WMTS, SOS, CSW
@@ -27,12 +27,13 @@ Links
2727

2828
- website: http://geohealthcheck.org
2929
- GitHub: https://github.com/geopython/geohealthcheck
30-
- Demo: http://demo.geohealthcheck.org (official demo)
31-
- DevDemo: http://dev.geohealthcheck.org (latest development demo)
30+
- Demo: http://demo.geohealthcheck.org (official demo, master branch)
31+
- DevDemo: http://dev.geohealthcheck.org (latest development demo, dev branch)
3232
- Presentation: http://geohealthcheck.org/presentation
3333
- Gitter Chat: https://gitter.im/geopython/GeoHealthCheck
3434

35-
This is document version |release| generated on |today|.
35+
This document applies to GHC version |release| and was generated on |today|.
36+
The latest version is always available at http://docs.geohealthcheck.org.
3637

3738
Contents:
3839

docs/install.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ Install
6666
- Download GeoHealthCheck (releases can be found at
6767
https://github.com/geopython/GeoHealthCheck/releases)
6868

69+
.. _upgrade:
70+
6971
Upgrade
7072
-------
7173

@@ -81,9 +83,12 @@ An existing GHC database installation can be upgraded with:
8183
Notes:
8284

8385
* **Always backup your database first!!**
84-
* make sure Flask-Migrate is installed (see requirements.txt), else: `pip install Flask-Migrate==2.0.3`
85-
* upgrading should be "smart": only performed when required
86-
* when upgrading from pre-v0.2.0 (first version with Plugins) adapt your `config_site.py` to Plugin settings from `config_main.py`
86+
* make sure Flask-Migrate is installed (see requirements.txt), else: `pip install Flask-Migrate==2.0.3`, but best is to run `paver setup` also for other dependencies
87+
* upgrading is "smart": you can always run `paver upgrade`, it has no effect when DB already uptodate
88+
* when upgrading from earlier versions without Plugin-support
89+
90+
- adapt your `config_site.py` to Plugin settings from `config_main.py`
91+
- assign `Probes` and `Checks` to each `Resource` via the UI
8792

8893

8994
Running

docs/plugins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Two Plugin types exist that can be extended: the `Probe` and `Check` class.
1414
Concepts
1515
--------
1616

17-
Starting with GHC v0.2.0 healthchecks are exclusively performed by Plugins. The basic concept
17+
GHC versions after May 1, 2017 perform healthchecks exclusively via Plugins (see :ref:`upgrade` how to upgrade from older versions). The basic concept
1818
is simple: each `Resource` (typically an OWS endpoint) has one or more `Probes`. During a
1919
GHC run (via `cron` or manually), GHC sequentually invokes the `Probes` for each `Resource`
2020
to determine the health (QoS) of the `Resource`.

0 commit comments

Comments
 (0)