Skip to content

Commit 2aed8ca

Browse files
committed
Update info for 2.6.1 release
1 parent c847a64 commit 2aed8ca

File tree

6 files changed

+16
-12
lines changed

6 files changed

+16
-12
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ project(PARTMC Fortran C)
77

88
set(PACKAGE_BUGREPORT "[email protected]")
99
set(PACKAGE_NAME "PartMC")
10-
set(PACKAGE_STRING "PartMC 2.6.0")
10+
set(PACKAGE_STRING "PartMC 2.6.1")
1111
set(PACKAGE_TARNAME "partmc")
12-
set(PACKAGE_VERSION "2.6.0")
12+
set(PACKAGE_VERSION "2.6.1")
1313

1414
######################################################################
1515
# options

ChangeLog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11

2+
2.6.1 - 2022-02-18
3+
4+
* Update to support SUNDIALS version 5.8.0 (Sylwester Arabas).
5+
26
2.6.0 - 2021-11-03
37

48
* Clean up README formatting (Matt West).

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ PartMC: Particle-resolved Monte Carlo code for atmospheric aerosol simulation
66

77
[![Latest version](https://img.shields.io/github/tag/compdyn/partmc.svg?label=version)](https://github.com/compdyn/partmc/blob/master/ChangeLog.md) [![Docker build status](https://img.shields.io/docker/automated/compdyn/partmc.svg)](https://hub.docker.com/r/compdyn/partmc/builds/) [![Github Actions Status](https://github.com/compdyn/partmc/workflows/CI/badge.svg?branch=master)](https://github.com/compdyn/partmc/actions/workflows/main.yml) [![License](https://img.shields.io/github/license/compdyn/partmc.svg)](https://github.com/compdyn/partmc/blob/master/COPYING) [![DOI](https://zenodo.org/badge/24058992.svg)](https://zenodo.org/badge/latestdoi/24058992)
88

9-
Version 2.6.0
10-
Released 2021-11-03
9+
Version 2.6.1
10+
Released 2022-02-18
1111

1212
**Source:** <https://github.com/compdyn/partmc>
1313

1414
**Homepage:** <http://lagrange.mechse.illinois.edu/partmc/>
1515

16-
**Cite as:** M. West, N. Riemer, J. Curtis, M. Michelotti, and J. Tian (2021) PartMC, [![version](https://img.shields.io/github/release/compdyn/partmc.svg?label=version)](https://github.com/compdyn/partmc), [![DOI](https://zenodo.org/badge/24058992.svg)](https://zenodo.org/badge/latestdoi/24058992)
16+
**Cite as:** M. West, N. Riemer, J. Curtis, M. Michelotti, and J. Tian (2022) PartMC, [![version](https://img.shields.io/github/release/compdyn/partmc.svg?label=version)](https://github.com/compdyn/partmc), [![DOI](https://zenodo.org/badge/24058992.svg)](https://zenodo.org/badge/latestdoi/24058992)
1717

18-
Copyright (C) 2005-2021 Nicole Riemer and Matthew West
18+
Copyright (C) 2005-2022 Nicole Riemer and Matthew West
1919
Portions copyright (C) Andreas Bott, Richard Easter, Jeffrey Curtis,
2020
Matthew Michelotti, and Jian Tian
2121
Licensed under the GNU General Public License version 2 or (at your
@@ -185,12 +185,12 @@ Installation
185185

186186
2. Unpack PartMC:
187187

188-
tar xzvf partmc-2.6.0.tar.gz
188+
tar xzvf partmc-2.6.1.tar.gz
189189

190190
3. Change into the main PartMC directory (where this README file is
191191
located):
192192

193-
cd partmc-2.6.0
193+
cd partmc-2.6.1
194194

195195
4. Make a directory called `build` and change into it:
196196

doc/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = PartMC
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 2.6.0
41+
PROJECT_NUMBER = 2.6.1
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

doc/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
VERSION = 2.6.0
2+
VERSION = 2.6.1
33

44
GRAPHVIZ_FILE = partmc_modules.gv
55
GRAPHVIZ_PDF = $(patsubst %.gv,%.pdf,$(GRAPHVIZ_FILE))

src/output.F90

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
! Copyright (C) 2005-2018, 2021 Nicole Riemer and Matthew West
1+
! Copyright (C) 2005-2022 Nicole Riemer and Matthew West
22
! Licensed under the GNU General Public License version 2 or (at your
33
! option) any later version. See the file COPYING for details.
44

@@ -82,7 +82,7 @@ module pmc_output
8282
#endif
8383

8484
!> PartMC verson number.
85-
character(len=100), parameter :: PARTMC_VERSION = "2.6.0"
85+
character(len=100), parameter :: PARTMC_VERSION = "2.6.1"
8686

8787
!> Type code for undefined or invalid output.
8888
integer, parameter :: OUTPUT_TYPE_INVALID = 0

0 commit comments

Comments
 (0)