Skip to content

Commit

Permalink
prepare 9.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwilliams committed Jun 12, 2024
1 parent bf43de3 commit 4d3f9a6
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.0.0
9.0.1
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ include ( "cmake/checkOutOfSource.cmake" )
#---------------------
project (
jsonfortran
VERSION 9.0.0
VERSION 9.0.1
LANGUAGES Fortran
)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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} )
Expand Down
3 changes: 3 additions & 0 deletions pages/releases/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/json_module.F90
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4d3f9a6

Please sign in to comment.