Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.17.0
current_version = 0.17.1
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>(a|na))+(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}{release}{build}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: create package
run: python -m build --sdist
- name: import open-mastr
run: python -m pip install ./dist/open_mastr-0.17.0.tar.gz
run: python -m pip install ./dist/open_mastr-0.17.1.tar.gz
- name: Create credentials file
env:
MASTR_TOKEN: ${{ secrets.MASTR_TOKEN }}
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ For each version important additions, changes and removals are listed here.
The format is inspired from [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and the versioning aims to respect [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [v0.17.1] Hotfix - 2026-04-13
### Changed
- Fix broken `Mastr.to_csv` function by removing stray `**kwargs`
[#736](https://github.com/OpenEnergyPlatform/open-MaStR/pull/736)


## [v0.17.0] Full download via SOAP API deprecation and interactive download functionality - 2026-04-02
### Added
- Add interactive download functionality for MaStR date selection
Expand Down
12 changes: 8 additions & 4 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,16 @@ authors:
affiliation: "Technical University of Munich"
- family-names: 'Krämer'
given-names: "Kevin"
alias: "pt-kkraemer"
affiliation: "ProjectTogether gGmbH"
alias: "@pt-kkraemer"
affiliation: "ProjectTogether gGmbH"
- family-names: 'Will'
given-names: "Simon"
alias: "@Simon-Will"
affiliation: ""
title: "open-MaStR"
type: software
license: AGPL-3.0
version: 0.17.0
version: 0.17.1
doi:
date-released: 2026-04-02
date-released: 2026-04-13
url: "https://github.com/OpenEnergyPlatform/open-MaStR/"
2 changes: 1 addition & 1 deletion open_mastr/mastr.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def to_csv(

# Validate and parse tables parameter
validate_parameter_data(method="csv_export", data=tables)
data = transform_data_parameter(tables, **kwargs)
data = transform_data_parameter(tables)

# Determine tables to export
technologies_to_export = []
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "open_mastr"
version = "0.17.0"
version = "0.17.1"
dependencies = [
"pandas>=2.2.2",
"numpy",
Expand Down Expand Up @@ -79,4 +79,4 @@ open_mastr = [
include = ["open_mastr", "open_mastr.soap_api", "open_mastr.soap_api.metadata", "open_mastr.utils", "open_mastr.utils.config", "open_mastr.xml_download"] # package names should match these glob patterns (["*"] by default)

# from setup.py - not yet included in here
# download_url="https://github.com/OpenEnergyPlatform/open-MaStR/archive""/refs/tags/v0.17.0.tar.gz",
# download_url="https://github.com/OpenEnergyPlatform/open-MaStR/archive""/refs/tags/v0.17.1.tar.gz",
Loading