Skip to content

Commit 1147599

Browse files
committed
prepare 9.0.2 release
1 parent cde2620 commit 1147599

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

.VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.0.1
1+
9.0.2

CHANGELOG.md

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

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [9.0.2 (2024-08-25)](#902-2024-08-25)
78
- [9.0.1 (2024-06-11)](#901-2024-06-11)
89
- [9.0.0 (2024-06-11)](#900-2024-06-11)
910
- [8.5.2 (2024-05-27)](#852-2024-05-27)
@@ -51,7 +52,17 @@
5152

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

54-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.1...HEAD)
55+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.2...HEAD)
56+
57+
### [9.0.2](https://github.com/jacobwilliams/json-fortran/tree/9.0.2) (2024-08-25)
58+
59+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.1...9.0.2)
60+
or [Download v9.0.2](https://github.com/jacobwilliams/json-fortran/releases/tag/9.0.2)
61+
62+
**Bug Fixes:**
63+
64+
* Added workarounds for potential stack overflows on Windows using `ifort` compiler. [#577](https://github.com/jacobwilliams/json-fortran/pull/577) ([robertrueger](https://github.com/robertrueger))
65+
* Fixed CI documentation deployment. [#573](https://github.com/jacobwilliams/json-fortran/issues/573) ([jacobwilliams](https://github.com/jacobwilliams))
5566

5667
### [9.0.1](https://github.com/jacobwilliams/json-fortran/tree/9.0.1) (2024-06-11)
5768

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 9.0.1
43+
VERSION 9.0.2
4444
LANGUAGES Fortran
4545
)
4646

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ cmake_minimum_required ( VERSION 3.18 FATAL_ERROR )
142142
enable_language ( Fortran )
143143
project ( jf_test NONE )
144144
145-
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 9.0.1 REQUIRED )
145+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 9.0.2 REQUIRED )
146146
147147
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.F90" )
148148
foreach ( UNIT_TEST ${JF_TEST_SRCS} )

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+
* [9.0.2](https://jacobwilliams.github.io/json-fortran/prev/9.0.2/index.html)
29+
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
30+
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/9.0.2)
2831
* [9.0.1](https://jacobwilliams.github.io/json-fortran/prev/9.0.1/index.html)
2932
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
3033
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/9.0.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 = '9.0.1'
76+
character(kind=json_CK,len=*),parameter,private :: version = '9.0.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)