Skip to content

Commit 17f6d2f

Browse files
committed
prepare 9.0.4 release
1 parent e6f3b50 commit 17f6d2f

File tree

6 files changed

+20
-5
lines changed

6 files changed

+20
-5
lines changed

.VERSION

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

CHANGELOG.md

Lines changed: 13 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.4 (2025-08-02)](#904-2025-08-02)
78
- [9.0.3 (2025-02-22)](#903-2025-02-22)
89
- [9.0.2 (2024-08-25)](#902-2024-08-25)
910
- [9.0.1 (2024-06-11)](#901-2024-06-11)
@@ -53,7 +54,18 @@
5354

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

56-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.3...HEAD)
57+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.4...HEAD)
58+
59+
### [9.0.4](https://github.com/jacobwilliams/json-fortran/tree/9.0.4) (2025-08-02)
60+
61+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.3...9.0.4)
62+
or [Download v9.0.4](https://github.com/jacobwilliams/json-fortran/releases/tag/9.0.4)
63+
64+
**Changes:**
65+
66+
* Configure `.VERSION.in` in `CMAKE_CURRENT_SOURCE_DIR` in main `CMakeLists.txt`. [#585](https://github.com/jacobwilliams/json-fortran/issues/585) [#586](https://github.com/jacobwilliams/json-fortran/pull/586) ([mcharlou](https://github.com/mcharlou))
67+
* Fixed error when using non-default ints. [#591](https://github.com/jacobwilliams/json-fortran/issues/591) [#592](https://github.com/jacobwilliams/json-fortran/pull/592) ([jacobwilliams](https://github.com/jacobwilliams))
68+
* Various CI updates. Now testing Gfortran 9, 10, 11, 12. Removed tests for Gfortran 7, 8.
5769

5870
### [9.0.3](https://github.com/jacobwilliams/json-fortran/tree/9.0.3) (2025-02-22)
5971

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.3
43+
VERSION 9.0.4
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.3 REQUIRED )
152+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 9.0.4 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.4](https://jacobwilliams.github.io/json-fortran/prev/9.0.4/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.4)
2831
* [9.0.3](https://jacobwilliams.github.io/json-fortran/prev/9.0.3/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.3)

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.3'
76+
character(kind=json_CK,len=*),parameter,private :: version = '9.0.4'
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)