Skip to content

Commit 00d2130

Browse files
committed
prepare 9.0.3 release
1 parent d0b20e8 commit 00d2130

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.2
1+
9.0.3

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.3 (2025-02-22)](#903-2025-02-22)
78
- [9.0.2 (2024-08-25)](#902-2024-08-25)
89
- [9.0.1 (2024-06-11)](#901-2024-06-11)
910
- [9.0.0 (2024-06-11)](#900-2024-06-11)
@@ -52,7 +53,17 @@
5253

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

55-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.2...HEAD)
56+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.3...HEAD)
57+
58+
### [9.0.3](https://github.com/jacobwilliams/json-fortran/tree/9.0.3) (2025-02-22)
59+
60+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.2...9.0.3)
61+
or [Download v9.0.3](https://github.com/jacobwilliams/json-fortran/releases/tag/9.0.3)
62+
63+
**Changes:**
64+
65+
* Added some checks to write statements to avoid potential crashes. [#581](https://github.com/jacobwilliams/json-fortran/issues/581) [#582](https://github.com/jacobwilliams/json-fortran/pull/582) ([jacobwilliams](https://github.com/jacobwilliams))
66+
* Attempting to reduce the size of the repo by pruning the documentation `gh-pages` history. [#583](https://github.com/jacobwilliams/json-fortran/issues/583) [#584](https://github.com/jacobwilliams/json-fortran/pull/584) ([jacobwilliams](https://github.com/jacobwilliams))
5667

5768
### [9.0.2](https://github.com/jacobwilliams/json-fortran/tree/9.0.2) (2024-08-25)
5869

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

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