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 CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.18)

project(
open-interfaces
VERSION 0.6.2
VERSION 0.6.3
# SPDX_LICENSE BSD-2-Clause -- Available in CMake 4.2+
DESCRIPTION "Improving interoperability in scientific computing"
HOMEPAGE_URL https://github.com/MaRDI4NFDI/open-interfaces
Expand Down
4 changes: 2 additions & 2 deletions Manifest.toml

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

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ Please use the
for bug reports and feature requests and asking questions.


## License

[![License](https://img.shields.io/badge/License-BSD_2--Clause-orange.svg)](https://opensource.org/licenses/BSD-2-Clause)


## Funding

This work is funded by the _Deutsche Forschungsgemeinschaft_ (DFG, _German
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

project = "MaRDI Open Interfaces"
copyright = "2023--2025 MaRDI Open Interfaces authors"
release = "0.6.2"
release = "0.6.3"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
8 changes: 4 additions & 4 deletions docs/source/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ Then open a terminal and go to that directory.
Alternatively, download and unpack the source code directly from the terminal,
for example, for the latest release:
```shell
curl -LO https://github.com/MaRDI4NFDI/open-interfaces/archive/refs/tags/v0.6.2.tar.gz
tar -xzvf v0.6.2.tar.gz
cd open-interfaces-0.6.2
curl -LO https://github.com/MaRDI4NFDI/open-interfaces/archive/refs/tags/v0.6.3.tar.gz
tar -xzvf v0.6.3.tar.gz
cd open-interfaces-0.6.3
```

If you prefer to use the latest development version,
Expand Down Expand Up @@ -109,7 +109,7 @@ along with several Julia packages. The only supported installation method
for Julia and Julia packages is described [in this section](#install-julia).

If your preferred programming language is Python,
you can install Open Interfaces via `pip` as described
you can install Open Interfaces via `pip` for Python 3.9+ as described
[here](#install-via-pip), which builds Open Interfaces automatically,
so you do not have to build the library by hand.

Expand Down
2 changes: 1 addition & 1 deletion lang_julia/OpenInterfaces/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "OpenInterfaces"
uuid = "07cfd324-e924-40a7-85fa-5e46307e7ad7"
authors = ["Dmitry Kabanov <dmitry.kabanov@uni-muenster.de>", "Stephan Rave <stephan.rave@uni-muenster.de", "Mario Ohlberger <mario.ohlberger@uni-muenster.de"]
version = "0.6.2"
version = "0.6.3"

[deps]
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
Expand Down
2 changes: 1 addition & 1 deletion lang_julia/OpenInterfacesImpl/Manifest.toml

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

2 changes: 1 addition & 1 deletion lang_julia/OpenInterfacesImpl/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "OpenInterfacesImpl"
uuid = "daff4927-7858-4806-96da-915047fb441c"
authors = ["Dmitry Kabanov <dmitry.kabanov@uni-muenster.de>", "Stephan Rave <stephan.rave@uni-muenster.de", "Mario Ohlberger <mario.ohlberger@uni-muenster.de"]
version = "0.6.2"
version = "0.6.3"

[deps]
MsgPack = "99f44e22-a591-53d1-9472-aa23ef4bd671"
Expand Down
2 changes: 1 addition & 1 deletion lang_python/oif/openinterfaces/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.2"
__version__ = "0.6.3"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "openinterfaces"
version = "0.6.2"
version = "0.6.3"
authors = [
{ name = "Dmitry I. Kabanov", email = "dmitry.kabanov@uni-muenster.de" },
{ name = "Stephan Rave", email = "stephan.rave@uni-muenster.de" },
Expand Down
Loading