Skip to content

Commit 41f971b

Browse files
authored
Merge pull request #2181 from OpenEnergyPlatform/master
Master
2 parents 541490c + 4ad13f0 commit 41f971b

File tree

9 files changed

+47
-26
lines changed

9 files changed

+47
-26
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.5.2
2+
current_version = 1.6.0
33

44
[bumpversion:file:VERSION]
55

CITATION.cff

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cff-version: 1.5.2
1+
cff-version: 1.6.0
22
message: "If you use this software, please cite it using these metadata."
33
authors:
44
- family-names: "Hülk"
@@ -28,7 +28,7 @@ authors:
2828
title: "Open Energy Family - Open Energy Platform (OEP)"
2929
type: software
3030
license: AGPL-3.0-or-later
31-
version: 1.5.2
31+
version: 1.6.0
3232
doi:
33-
date-released: 2025-10-30
33+
date-released: 2025-11-27
3434
url: "https://github.com/OpenEnergyPlatform/oeplatform/"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.5.2
1+
1.6.0

dataedit/templates/dataedit/dataview.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h1 class="main-header__title">
1616
Database
1717
</h1>
1818
<div class="main-header__wizard">
19-
<a href="{% url 'dataedit:topic-list' %}">Table</a> /
19+
Table /
2020
{% if table_label %}
2121
{{ table_label }}
2222
{% else %}

dataedit/templates/dataedit/table_permissions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h1 class="main-header__title">
1616
</h1>
1717
<div class="main-header__wizard">
1818
<span class="main-header__wizard-process">Permissions :</span>
19-
<span class="main-header__wizard-path"><a href="{% url 'dataedit:topic-list' %}">Table</a> /
19+
<span class="main-header__wizard-path">Table /
2020
<a href="{% url 'dataedit:view' table=table %}">{{ table }}</a></span>
2121
</div>
2222
</div>

oeplatform/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
SPDX-License-Identifier: CC0-1.0
44
""" # noqa: 501
55

6-
__version__ = "1.5.2"
6+
__version__ = "1.6.0"

versions/changelogs/1_6_0.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<!--
2+
SPDX-FileCopyrightText: 2025 Christian Winger <https://github.com/wingechr> © Öko-Institut e.V.
3+
SPDX-FileCopyrightText: 2025 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut
4+
SPDX-FileCopyrightText: 2025 Christian Winger <https://github.com/wingechr> © Öko-Institut e.V.
5+
6+
SPDX-License-Identifier: CC0-1.0
7+
-->
8+
9+
# Changes to the oeplatform code
10+
11+
## Changes
12+
13+
- changes to urls:
14+
- `/dataedit/*` -> `/database/*`
15+
- `/api/v0/schema/<SCHEMA>/tables/*` -> `/api/v0//tables/*` (but old urls
16+
still supported)
17+
- removed api endpoint `move` (we have already `move_publish`)
18+
- remove `sequence` API endpoints
19+
20+
## Features
21+
22+
## Bugs
23+
24+
- Order columns present in column api endpoint by the ordinal position (which
25+
was specified when creating the table)
26+
[(#2176)](https://github.com/OpenEnergyPlatform/oeplatform/pull/2176)
27+
- fixing #2173 graph view, and also lon lat map view which was not fully
28+
implemented before
29+
30+
## Documentation updates
31+
32+
## Code Quality
33+
34+
- harmonized all api endpoints
35+
- names
36+
- validate existing table objects instead of passing table names
37+
- remove schema argument from views

versions/changelogs/current.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,10 @@ SPDX-License-Identifier: CC0-1.0
1010

1111
## Changes
1212

13-
- changes to urls:
14-
- `/dataedit/*` -> `/database/*`
15-
- `/api/v0/schema/<SCHEMA>/tables/*` -> `/api/v0//tables/*` (but old urls
16-
still supported)
17-
- removed api endpoint `move` (we have already `move_publish`)
18-
- remove `sequence` API endpoints
19-
2013
## Features
2114

2215
## Bugs
2316

24-
- Order columns present in column api endpoint by the ordinal position (which
25-
was specified when creating the table)
26-
[(#2176)](https://github.com/OpenEnergyPlatform/oeplatform/pull/2176)
27-
- fixing #2173 graph view, and also lon lat map view which was not fully
28-
implemented before
29-
3017
## Documentation updates
3118

3219
## Code Quality
33-
34-
- harmonized all api endpoints
35-
- names
36-
- validate existing table objects instead of passing table names
37-
- remove schema argument from views

versions/changelogs/current.template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,5 @@ SPDX-License-Identifier: CC0-1.0
1515
## Bugs
1616

1717
## Documentation updates
18+
19+
## Code Quality

0 commit comments

Comments
 (0)