Skip to content

Commit 40e6ccc

Browse files
committed
Prepare 9.0.5 release
1 parent e854d8a commit 40e6ccc

File tree

6 files changed

+18
-5
lines changed

6 files changed

+18
-5
lines changed

.VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.0.4
1+
9.0.5

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [9.0.5 (2025-08-25)](#905-2025-08-25)
78
- [9.0.4 (2025-08-02)](#904-2025-08-02)
89
- [9.0.3 (2025-02-22)](#903-2025-02-22)
910
- [9.0.2 (2024-08-25)](#902-2024-08-25)
@@ -54,7 +55,16 @@
5455

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

57-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.4...HEAD)
58+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.5...HEAD)
59+
60+
### [9.0.5](https://github.com/jacobwilliams/json-fortran/tree/9.0.5) (2025-08-25)
61+
62+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.4...9.0.5)
63+
or [Download v9.0.5](https://github.com/jacobwilliams/json-fortran/releases/tag/9.0.5)
64+
65+
**Changes:**
66+
67+
* A minor change to work around a possible compiler bug in Gfortran 15.1. [#597](https://github.com/jacobwilliams/json-fortran/issues/597) [#598](https://github.com/jacobwilliams/json-fortran/pull/598) ([jacobwilliams](https://github.com/jacobwilliams))
5868

5969
### [9.0.4](https://github.com/jacobwilliams/json-fortran/tree/9.0.4) (2025-08-02)
6070

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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.4
43+
VERSION 9.0.5
4444
LANGUAGES Fortran
4545
)
4646

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ cmake_minimum_required ( VERSION 3.18 FATAL_ERROR )
149149
enable_language ( Fortran )
150150
project ( jf_test NONE )
151151
152-
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 9.0.4 REQUIRED )
152+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 9.0.5 REQUIRED )
153153
154154
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.F90" )
155155
foreach ( UNIT_TEST ${JF_TEST_SRCS} )

pages/releases/index.md

Lines changed: 3 additions & 0 deletions
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.5](https://jacobwilliams.github.io/json-fortran/prev/9.0.5/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.5)
2831
* [9.0.4](https://jacobwilliams.github.io/json-fortran/prev/9.0.4/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.4)

src/json_module.F90

Lines changed: 1 addition & 1 deletion
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.4'
76+
character(kind=json_CK,len=*),parameter,private :: version = '9.0.5'
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)