Skip to content

Commit

Permalink
Release version 2.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeininger committed Jun 24, 2022
1 parent e38c7d8 commit 3a9c948
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
---------

2.0.5
*****

https://github.com/openoereb/oereb_client/milestone/12

- Add option for Google global site tag

2.0.4
*****

Expand Down
2 changes: 1 addition & 1 deletion docs/src/Installation.stories.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ If you want to install a certain version of the package, you can
specifiy it. For example:

```console
.venv/bin/pip install oereb_client==2.0.4
.venv/bin/pip install oereb_client==2.0.5
```

> **NOTE:** Use the latest release as long as there is no need for a
Expand Down
2 changes: 1 addition & 1 deletion oereb_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from pyramid_mako import add_mako_renderer


__version__ = '2.0.4'
__version__ = '2.0.5'


log = logging.getLogger('oereb_client')
Expand Down
6 changes: 3 additions & 3 deletions oereb_client/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<!-- OEREB Client, version ${config['version']} -->
<html lang="de">
<head>

% if google_gtag:
<script async src="https://www.googletagmanager.com/gtag/js?id=${google_gtag}"></script>
<script>
Expand All @@ -15,7 +15,7 @@
gtag('config', '${google_gtag}');
</script>
% endif

% if google_analytics:
<script type="text/javascript">
var _gaq = _gaq || [];
Expand All @@ -29,7 +29,7 @@
})();
</script>
% endif

<title>${title}</title>
<link rel="shortcut icon" type="image/png" href="${config['application']['icon']}"/>
<meta charset="utf-8">
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "oereb_client",
"version": "2.0.4",
"version": "2.0.5",
"description": "OEREB Client based on Vue.js, OpenLayers and Bootstrap.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from setuptools import setup, find_packages
from datetime import datetime

VERSION = '2.0.4'
VERSION = '2.0.5'

test_mode = False
is_beta = False
Expand Down

0 comments on commit 3a9c948

Please sign in to comment.