diff --git a/.VERSION b/.VERSION index f7ee06693c..37ad5c8b19 100644 --- a/.VERSION +++ b/.VERSION @@ -1 +1 @@ -9.0.0 +9.0.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index b9924c9343..42a479b4ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ - [Change Log](#change-log) - [Unreleased](#unreleased) - - [9.0.0 (2024-06-11)](#860-2024-06-11) + - [9.0.1 (2024-06-11)](#901-2024-06-11) + - [9.0.0 (2024-06-11)](#900-2024-06-11) - [8.5.2 (2024-05-27)](#852-2024-05-27) - [8.5.1 (2024-05-26)](#851-2024-05-26) - [8.5.0 (2024-05-25)](#850-2024-05-25) @@ -50,7 +51,16 @@ ### [Unreleased](https://github.com/jacobwilliams/json-fortran/tree/HEAD) -[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.0...HEAD) +[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.1...HEAD) + +### [9.0.1](https://github.com/jacobwilliams/json-fortran/tree/9.0.1) (2024-06-11) + +[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.5.2...9.0.1) +or [Download v9.0.1](https://github.com/jacobwilliams/json-fortran/releases/tag/9.0.1) + +**Enhancements:** + +* No code changes. Just an update to the CI to fix documentation deployment. [#573](https://github.com/jacobwilliams/json-fortran/issues/573) ([jacobwilliams](https://github.com/jacobwilliams)) ### [9.0.0](https://github.com/jacobwilliams/json-fortran/tree/9.0.0) (2024-06-11) diff --git a/CMakeLists.txt b/CMakeLists.txt index 646e819496..017564482c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,7 +40,7 @@ include ( "cmake/checkOutOfSource.cmake" ) #--------------------- project ( jsonfortran - VERSION 9.0.0 + VERSION 9.0.1 LANGUAGES Fortran ) diff --git a/README.md b/README.md index 2702f40f02..48aea75488 100644 --- a/README.md +++ b/README.md @@ -142,7 +142,7 @@ cmake_minimum_required ( VERSION 3.18 FATAL_ERROR ) enable_language ( Fortran ) project ( jf_test NONE ) -find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 9.0.0 REQUIRED ) +find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 9.0.1 REQUIRED ) file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.F90" ) foreach ( UNIT_TEST ${JF_TEST_SRCS} ) diff --git a/pages/releases/index.md b/pages/releases/index.md index 3fc727bb8d..4ada2ecd25 100644 --- a/pages/releases/index.md +++ b/pages/releases/index.md @@ -25,6 +25,9 @@ documentation from the documentation for official releases other than using the browser's back button. Feel free to bookmark this page, or the [main project page](|url|/index.html) for convenient navigation. +* [9.0.1](https://jacobwilliams.github.io/json-fortran/prev/9.0.1/index.html) + ([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation) + - [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/9.0.1) * [9.0.0](https://jacobwilliams.github.io/json-fortran/prev/9.0.0/index.html) ([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation) - [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/9.0.0) diff --git a/src/json_module.F90 b/src/json_module.F90 index 84645c4a52..09a0885859 100644 --- a/src/json_module.F90 +++ b/src/json_module.F90 @@ -73,7 +73,7 @@ module json_module implicit none - character(kind=json_CK,len=*),parameter,private :: version = '9.0.0' + character(kind=json_CK,len=*),parameter,private :: version = '9.0.1' !! JSON-Fortran version. !! !!@note This string should match the one in the `.VERSION` file (which is used