Skip to content

Commit 4d3f9a6

Browse files
committed
prepare 9.0.1
1 parent bf43de3 commit 4d3f9a6

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

.VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.0.0
1+
9.0.1

CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7-
- [9.0.0 (2024-06-11)](#860-2024-06-11)
7+
- [9.0.1 (2024-06-11)](#901-2024-06-11)
8+
- [9.0.0 (2024-06-11)](#900-2024-06-11)
89
- [8.5.2 (2024-05-27)](#852-2024-05-27)
910
- [8.5.1 (2024-05-26)](#851-2024-05-26)
1011
- [8.5.0 (2024-05-25)](#850-2024-05-25)
@@ -50,7 +51,16 @@
5051

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

53-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.0...HEAD)
54+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/9.0.1...HEAD)
55+
56+
### [9.0.1](https://github.com/jacobwilliams/json-fortran/tree/9.0.1) (2024-06-11)
57+
58+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.5.2...9.0.1)
59+
or [Download v9.0.1](https://github.com/jacobwilliams/json-fortran/releases/tag/9.0.1)
60+
61+
**Enhancements:**
62+
63+
* 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))
5464

5565
### [9.0.0](https://github.com/jacobwilliams/json-fortran/tree/9.0.0) (2024-06-11)
5666

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.0
43+
VERSION 9.0.1
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.0 REQUIRED )
145+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 9.0.1 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.1](https://jacobwilliams.github.io/json-fortran/prev/9.0.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.0.1)
2831
* [9.0.0](https://jacobwilliams.github.io/json-fortran/prev/9.0.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.0.0)

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