Skip to content

Commit 9281ddf

Browse files
committed
release: set petsc v3.22.0 strings
1 parent 5636f27 commit 9281ddf

File tree

8 files changed

+19
-18
lines changed

8 files changed

+19
-18
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
====================
2-
Changes: Development
3-
====================
1+
=============
2+
Changes: 3.22
3+
=============
44

55
..
66
STYLE GUIDELINES:

doc/changes/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ editor.
2323
.. toctree::
2424
:maxdepth: 1
2525

26-
main - PETSc development version <dev>
26+
3.22 - Public Release, Sep 28, 2024 <322>
2727
3.21 - Public Release, Mar 29, 2024 <321>
2828
3.20 - Public Release, Sep 28, 2023 <320>
2929
3.19 - Public Release, Mar 30, 2023 <319>

doc/install/download.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,16 @@ Alternative: Obtain Release Version with Tarball
3131

3232
Tarball which contains only the source. Documentation available `online <https://petsc.org/release>`__.
3333

34-
- `petsc-3.21.6.tar.gz <https://web.cels.anl.gov/projects/petsc/download/release-snapshots/petsc-3.21.6.tar.gz>`__
34+
- `petsc-3.22.0.tar.gz <https://web.cels.anl.gov/projects/petsc/download/release-snapshots/petsc-3.22.0.tar.gz>`__
3535

3636
Tarball which includes all documentation, recommended for offline use.
3737

38-
- `petsc-with-docs-3.21.6.tar.gz <https://web.cels.anl.gov/projects/petsc/download/release-snapshots/petsc-with-docs-3.21.6.tar.gz>`__
38+
- `petsc-with-docs-3.22.0.tar.gz <https://web.cels.anl.gov/projects/petsc/download/release-snapshots/petsc-with-docs-3.22.0.tar.gz>`__
3939

4040

4141
Tarball to enable a separate installation of petsc4py.
4242

43-
- `petsc4py-3.21.6.tar.gz <https://web.cels.anl.gov/projects/petsc/download/release-snapshots/petsc4py-3.21.6.tar.gz>`__
43+
- `petsc4py-3.22.0.tar.gz <https://web.cels.anl.gov/projects/petsc/download/release-snapshots/petsc4py-3.22.0.tar.gz>`__
4444

4545
To extract the sources use:
4646

doc/install/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -575,10 +575,10 @@ configure time. For example:
575575

576576
.. code-block:: console
577577
578-
$ ./configure --prefix=/opt/petsc/petsc-3.21.0-mpich --with-mpi-dir=/opt/mpich
578+
$ ./configure --prefix=/opt/petsc/petsc-3.22.0-mpich --with-mpi-dir=/opt/mpich
579579
$ make
580580
$ make install [DESTDIR=/tmp/petsc-pkg]
581-
$ ./configure --prefix=/opt/petsc/petsc-3.21.0-openmpi --with-mpi-dir=/opt/openmpi
581+
$ ./configure --prefix=/opt/petsc/petsc-3.22.0-openmpi --with-mpi-dir=/opt/openmpi
582582
$ make
583583
$ make install [DESTDIR=/tmp/petsc-pkg]
584584

doc/overview/previous_release_docs.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Documentation for previous PETSc releases
66
.. toctree::
77
:maxdepth: 1
88

9+
3.21 <https://web.cels.anl.gov/projects/petsc/vault/petsc-3.21/docs>
910
3.20 <https://web.cels.anl.gov/projects/petsc/vault/petsc-3.20/docs>
1011
3.19 <https://web.cels.anl.gov/projects/petsc/vault/petsc-3.19/docs>
1112
3.18 <https://web.cels.anl.gov/projects/petsc/vault/petsc-3.18/docs>

doc/petsc.bib

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9010,11 +9010,11 @@ @TechReport{ petsc-user-ref
90109010
and Dinesh Kaushik and Matthew~G. Knepley and Fande Kong and Scott Kruger and
90119011
Dave~A. May and Lois Curfman McInnes and Richard Tran Mills and Lawrence Mitchell
90129012
and Todd Munson and Jose~E. Roman and Karl Rupp and Patrick Sanan and Jason Sarich
9013-
and Barry~F. Smith and Stefano Zampini and Hong Zhang and Hong Zhang and Junchao
9014-
Zhang},
9013+
and Barry~F. Smith and Hansol Suh and Stefano Zampini and Hong Zhang and Hong Zhang
9014+
and Junchao Zhang},
90159015
title = {{PETSc/TAO} Users Manual},
90169016
institution = {Argonne National Laboratory},
9017-
number = {ANL-21/39 - Revision 3.21},
9017+
number = {ANL-21/39 - Revision 3.22},
90189018
doi = {10.2172/2205494},
90199019
year = {2024}
90209020
}

include/petscversion.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
#define PETSCVERSION_H
33
#include <petscconf.h>
44

5-
#define PETSC_VERSION_RELEASE 0
5+
#define PETSC_VERSION_RELEASE 1
66
#define PETSC_VERSION_MAJOR 3
7-
#define PETSC_VERSION_MINOR 21
8-
#define PETSC_VERSION_SUBMINOR 6
9-
#define PETSC_RELEASE_DATE "Mar 29, 2024"
7+
#define PETSC_VERSION_MINOR 22
8+
#define PETSC_VERSION_SUBMINOR 0
9+
#define PETSC_RELEASE_DATE "Sep 28, 2024"
1010
#define PETSC_VERSION_DATE "unknown"
1111

1212
#if !defined(PETSC_VERSION_GIT)

src/sys/objects/pinit.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -466,10 +466,10 @@ PetscErrorCode PetscCitationsInitialize(void)
466466
and Victor Eijkhout and Jacob Faibussowitsch and William~D. Gropp and V\'{a}clav Hapla and Tobin Isaac and Pierre Jolivet\n\
467467
and Dmitry Karpeev and Dinesh Kaushik and Matthew~G. Knepley and Fande Kong and Scott Kruger\n\
468468
and Dave~A. May and Lois Curfman McInnes and Richard Tran Mills and Lawrence Mitchell and Todd Munson\n\
469-
and Jose~E. Roman and Karl Rupp and Patrick Sanan and Jason Sarich and Barry~F. Smith\n\
469+
and Jose~E. Roman and Karl Rupp and Patrick Sanan and Jason Sarich and Barry~F. Smith and Hansol Suh\n\
470470
and Stefano Zampini and Hong Zhang and Hong Zhang and Junchao Zhang},\n\
471471
Title = {{PETSc/TAO} Users Manual},\n\
472-
Number = {ANL-21/39 - Revision 3.21},\n\
472+
Number = {ANL-21/39 - Revision 3.22},\n\
473473
Doi = {10.2172/2205494},\n\
474474
Institution = {Argonne National Laboratory},\n\
475475
Year = {2024}\n}\n",

0 commit comments

Comments
 (0)