Skip to content

Commit d63cb44

Browse files
committed
Pushing new version
1 parent 4847c90 commit d63cb44

File tree

6 files changed

+42
-17
lines changed

6 files changed

+42
-17
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
:arrow_left: [Back to main page](./README.md)
44

5+
- January 23, 2023: Version 5.1 brings a lot of changes to the documentation, both on Github and on the website.
6+
We revived the [codecov](https://app.codecov.io/gh/Parallel-in-Time/pySDC) connection and started the
7+
[OpenSFF Best Practices](https://bestpractices.coreinfrastructure.org/en/projects/6909) guide.
8+
The hook classes and the way they are handled has changed (without breaking the API, hooray), the battery model
9+
got quite an update and adaptivity plays a more prominent role now. Thanks to [\@brownbaerchen](https://github.com/brownbaerchen),
10+
[\@tlunet](https://github.com/tlunet), [\@lisawim](https://github.com/lisawim)!
511
- October 7, 2022: Version 5 comes with many changes, both visible and
612
invisible ones. Some of those break the existing API, but if you are
713
using tests, you should be fine. Major changes include:

CITATION.cff

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,25 @@ abstract: "The pySDC project is a Python implementation of the spectral deferred
22
authors:
33
- family-names: Speck
44
given-names: Robert
5-
orcid: https://orcid.org/https://orcid.org/0000-0002-3879-1210
5+
orcid: https://orcid.org/0000-0002-3879-1210
66
affiliation: "Jülich Supercomputing Centre, Forschungszentrum Jülich GmbH, 52425 Jülich, Germany"
7+
- family-names: Lunet
8+
given-names: Thibaut
9+
orcid: https://orcid.org/0000-0003-1745-0780
10+
affiliation: "Hamburg University of Technology, Institute of Mathematics, 21073 Hamburg, Germany"
11+
- family-names: Baumann
12+
given-names: Thomas
13+
orcid: https://orcid.org/0000-0002-4676-7659
14+
affiliation: "Jülich Supercomputing Centre, Forschungszentrum Jülich GmbH, 52425 Jülich, Germany"
15+
- family-names: Wimmer
16+
given-names: Lisa
17+
orcid: https://orcid.org/0000-0001-8829-0978
18+
affiliation: "University of Wuppertal, School of Mathematics and Natural Science, 42119 Wuppertal, Germany"
719
cff-version: 1.2.0
8-
date-released: 2022-10-07
20+
date-released: 2023-01-23
921
doi: 10.5281/zenodo.5599144
1022
keywords:
11-
- "parallel-in-time integration"
23+
- "parallel-in-time"
1224
- "spectral deferred corrections"
1325
- "parallel full approximation scheme in space and time"
1426
- multigrid
@@ -17,4 +29,4 @@ license: BSD-2-Clause
1729
message: "If you use this software, please cite it using these metadata."
1830
repository-code: https://github.com/Parallel-in-Time/pySDC
1931
title: "Parallel-in-Time/pySDC"
20-
version: 5.0.0
32+
version: 5.1.0

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2022, Parallel-in-Time (PinT) Algorithms
1+
Copyright (c) 2023, Parallel-in-Time (PinT) Algorithms
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without

MANIFEST.in

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
1-
# added by check_manifest.py
1+
# added by check-manifest
2+
include *.cff
3+
include *.in
24
include *.md
3-
include *.txt
4-
include *.rst
5-
include Doxyfile
5+
include *.yml
66
include LICENSE
77
include data/README
8-
include *.cff
98
include pyproject.toml
10-
119
recursive-include docs *.bat
10+
recursive-include docs *.css
11+
recursive-include docs *.jpg
12+
recursive-include docs *.json
13+
recursive-include docs *.md
14+
recursive-include docs *.png
1215
recursive-include docs *.py
1316
recursive-include docs *.rst
1417
recursive-include docs *.sh
1518
recursive-include docs Makefile
19+
recursive-include etc *.yml
1620
recursive-include pySDC *.npy
1721
recursive-include pySDC *.npz
1822
recursive-include pySDC *.pkl
1923
recursive-include pySDC *.rst
20-
recursive-include pySDC *.txt
24+
recursive-include pySDC *.txt

docs/source/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,17 @@
6262

6363
# General information about the project.
6464
project = 'pySDC'
65-
copyright = '2022, Robert Speck'
65+
copyright = '2023, Robert Speck'
6666
author = 'Robert Speck'
6767

6868
# The version info for the project you're documenting, acts as replacement for
6969
# |version| and |release|, also used in various other places throughout the
7070
# built documents.
7171
#
7272
# The short X.Y version.
73-
version = '5.0'
73+
version = '5.1'
7474
# The full version, including alpha/beta/rc tags.
75-
release = '5.0.0'
75+
release = '5.1.0'
7676

7777
# The language for content autogenerated by Sphinx. Refer to documentation
7878
# for a list of supported languages.

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = 'pySDC'
7-
version = '5.0.0'
7+
version = '5.1.0'
88
description = 'A Python implementation of spectral deferred correction methods and the likes'
99
license = {text = "BSD-2-Clause"}
10-
readme = 'README.rst'
10+
readme = 'README.md'
1111
authors=[
1212
{name='Robert Speck', email='[email protected]'},
13+
{name='Thibaut Lunet', email='[email protected]'},
14+
{name='Thomas Baumann', email='[email protected]'},
15+
{name='Lisa Wimmer', email='[email protected]'},
1316
]
1417
homepage = "http://www.parallel-in-time.org/pySDC/"
1518
repository = "https://github.com/Parallel-in-Time/pySDC/"

0 commit comments

Comments
 (0)