Skip to content

Commit 7f1d723

Browse files
committed
prepare 9.2.1 release
1 parent 64e9502 commit 7f1d723

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.2.0
1+
9.2.1

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.2.1 (2026-02-22)](#921-2026-02-22)
78
- [9.2.0 (2026-01-05)](#920-2026-01-05)
89
- [9.1.0 (2026-01-02)](#910-2026-01-02)
910
- [9.0.5 (2025-08-25)](#905-2025-08-25)
@@ -57,7 +58,18 @@
5758

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

60-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.2.0...HEAD)
61+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.2.1...HEAD)
62+
63+
### [9.2.1](https://github.com/jacobwilliams/json-fortran/tree/9.2.1) (2026-02-22)
64+
65+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.2.0...9.2.1)
66+
or [Download v9.2.1](https://github.com/jacobwilliams/json-fortran/releases/tag/9.2.1)
67+
68+
**Changes:**
69+
70+
* Fixed compile for systems without `real128` [#619](https://github.com/jacobwilliams/json-fortran/issues/619) [#621](https://github.com/jacobwilliams/json-fortran/pull/621) ([ivan-pi](https://github.com/ivan-pi))
71+
* Added a new test. [#622](https://github.com/jacobwilliams/json-fortran/issues/622) [#623](https://github.com/jacobwilliams/json-fortran/pull/623) ([jacobwilliams](https://github.com/jacobwilliams))
72+
* Some minor code and doc cleanups. [#575](https://github.com/jacobwilliams/json-fortran/issues/575) [#618](https://github.com/jacobwilliams/json-fortran/pull/618) ([jacobwilliams](https://github.com/jacobwilliams))
6173

6274
### [9.2.0](https://github.com/jacobwilliams/json-fortran/tree/9.2.0) (2026-01-05)
6375

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.2.0
43+
VERSION 9.2.1
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.2.0 REQUIRED )
152+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 9.2.1 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.2.1](https://jacobwilliams.github.io/json-fortran/prev/9.2.1/index.html)
29+
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
30+
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/9.2.1)
2831
* [9.2.0](https://jacobwilliams.github.io/json-fortran/prev/9.2.0/index.html)
2932
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
3033
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/9.2.0)

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