Skip to content

Commit 99106c0

Browse files
committed
prepare 8.5.2
1 parent 1c08764 commit 99106c0

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

.VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.5.1
1+
8.5.2

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [8.5.2 (2024-05-27)](#852-2024-05-27)
78
- [8.5.1 (2024-05-26)](#851-2024-05-26)
89
- [8.5.0 (2024-05-25)](#850-2024-05-25)
910
- [8.4.0 (2024-03-06)](#840-2024-03-06)
@@ -48,7 +49,16 @@
4849

4950
### [Unreleased](https://github.com/jacobwilliams/json-fortran/tree/HEAD)
5051

51-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.5.1...HEAD)
52+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.5.2...HEAD)
53+
54+
### [8.5.2](https://github.com/jacobwilliams/json-fortran/tree/8.5.2) (2024-05-27)
55+
56+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.5.1...8.5.2)
57+
or [Download v8.5.2](https://github.com/jacobwilliams/json-fortran/releases/tag/8.5.2)
58+
59+
**Bug Fixes:**
60+
61+
* Fixed a CMake bug where the package version was not set correctly, which caused the CMake configuration files to be saved to a folder with blank version name. [#560](https://github.com/jacobwilliams/json-fortran/pull/560) ([timfelle](https://github.com/timfelle))
5262

5363
### [8.5.1](https://github.com/jacobwilliams/json-fortran/tree/8.5.1) (2024-05-26)
5464

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ include ( "cmake/checkOutOfSource.cmake" )
4040
#---------------------
4141
project (
4242
jsonfortran
43-
VERSION 8.5.1
43+
VERSION 8.5.2
4444
LANGUAGES Fortran
4545
)
4646

pages/releases/index.md

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ documentation from the documentation for official releases other than
2525
using the browser's back button. Feel free to bookmark this page, or
2626
the [main project page](|url|/index.html) for convenient navigation.
2727

28+
* [8.5.2](https://jacobwilliams.github.io/json-fortran/prev/8.5.2/index.html)
29+
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
30+
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/8.5.2)
2831
* [8.5.1](https://jacobwilliams.github.io/json-fortran/prev/8.5.1/index.html)
2932
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
3033
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/8.5.1)

src/json_module.F90

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ module json_module
7373

7474
implicit none
7575

76-
character(kind=json_CK,len=*),parameter,private :: version = '8.5.1'
76+
character(kind=json_CK,len=*),parameter,private :: version = '8.5.2'
7777
!! JSON-Fortran version.
7878
!!
7979
!!@note This string should match the one in the `.VERSION` file (which is used

0 commit comments

Comments
 (0)