Skip to content

Commit 5538c8d

Browse files
authored
Merge pull request #2207 from OpenEnergyPlatform/release-v1.6.2
Release v1.6.2
2 parents e9bb9b7 + 19e0531 commit 5538c8d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1498
-1220
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.6.1
2+
current_version = 1.6.2
33

44
[bumpversion:file:VERSION]
55

.github/workflows/automated-testing.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
run-tests:
13-
runs-on: ubuntu-22.04
13+
runs-on: ubuntu-latest
1414
env:
1515
# LD_PRELOAD: /lib/x86_64-linux-gnu/libSegFault.so
1616
# SEGFAULT_SIGNALS: all
@@ -55,8 +55,8 @@ jobs:
5555
- name: Install linux dependencies
5656
run: |
5757
sudo apt-get update -y
58-
sudo apt-get install -y postgresql-client --no-install-recommends ca-certificates || apt-get install -y --no-install-recommends ca-certificates
59-
sudo update-ca-certificates || update-ca-certificates
58+
sudo apt-get install -y postgresql-client ca-certificates
59+
sudo update-ca-certificates
6060
- name: Set up JDK 11
6161
uses: actions/setup-java@v4
6262
with:

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repos:
77
- id: end-of-file-fixer
88
- id: trailing-whitespace
99
- repo: https://github.com/psf/black-pre-commit-mirror
10-
rev: 25.11.0
10+
rev: 25.12.0
1111
hooks:
1212
- id: black
1313
- repo: https://github.com/pycqa/isort
@@ -21,7 +21,7 @@ repos:
2121
- id: flake8
2222
args: ["--max-line-length=88", "--ignore=E20,W503"] # black compatible
2323
- repo: https://github.com/pre-commit/mirrors-eslint
24-
rev: v10.0.0-alpha.0
24+
rev: v10.0.0-beta.0
2525
hooks:
2626
- id: eslint
2727
additional_dependencies:

.prettierignore

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,3 @@ mkdocs.yml
66

77
# django templates will be handled by djlint
88
*/templates/**/*.html
9-
10-
# ignore these for now
11-
**/*.js
12-
**/*.tsx
13-
**/*.jsx
14-
**/*.css
15-
**/*.scss
16-
**/*.jsonc

CITATION.cff

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cff-version: 1.6.1
1+
cff-version: 1.6.2
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.6.1
31+
version: 1.6.2
3232
doi:
33-
date-released: 2025-12-11
33+
date-released: 2026-01-07
3434
url: "https://github.com/OpenEnergyPlatform/oeplatform/"

REUSE.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2081,6 +2081,19 @@ SPDX-FileCopyrightText = [
20812081
"2023 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut",
20822082
]
20832083

2084+
[[annotations]]
2085+
path = "base/templates/base/oefamily-sc.html"
2086+
precedence = "override"
2087+
SPDX-License-Identifier = "AGPL-3.0-or-later"
2088+
SPDX-FileCopyrightText = [
2089+
"2020 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut",
2090+
"2020 Ludwig Hülk <https://github.com/Ludee> © Reiner Lemoine Institut",
2091+
"2021 Christian Hofmann <https://github.com/christian-rli> © Reiner Lemoine Institut © Reiner Lemoine Institut",
2092+
"2022 Christian Winger <https://github.com/wingechr> © Öko-Institut e.V.",
2093+
"2023 Jonas Huber <https://github.com/jh-RLI> © Reiner Lemoine Institut",
2094+
]
2095+
2096+
20842097
[[annotations]]
20852098
path = "ontology/templates/ontology/about.html"
20862099
precedence = "override"

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.1
1+
1.6.2

api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""
1+
__license__ = """
22
SPDX-FileCopyrightText: 2025 Christian Winger <https://github.com/wingechr> © Öko-Institut e.V.
33
SPDX-FileCopyrightText: 2025 Martin Glauer <https://github.com/MGlauer> © Otto-von-Guericke-Universität Magdeburg
44
SPDX-FileCopyrightText: 2025 Martin Glauer <https://github.com/MGlauer> © Otto-von-Guericke-Universität Magdeburg

0 commit comments

Comments
 (0)