Skip to content

Commit

Permalink
prepare 8.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwilliams committed May 27, 2024
1 parent 1c08764 commit 99106c0
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.5.1
8.5.2
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- [Change Log](#change-log)
- [Unreleased](#unreleased)
- [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)
- [8.4.0 (2024-03-06)](#840-2024-03-06)
Expand Down Expand Up @@ -48,7 +49,16 @@

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

[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.5.1...HEAD)
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.5.2...HEAD)

### [8.5.2](https://github.com/jacobwilliams/json-fortran/tree/8.5.2) (2024-05-27)

[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.5.1...8.5.2)
or [Download v8.5.2](https://github.com/jacobwilliams/json-fortran/releases/tag/8.5.2)

**Bug Fixes:**

* Fixed a CMake bug where the package version was not set correctly, which caused the CMake configuration files to be saved to a folder with blank version name. [#560](https://github.com/jacobwilliams/json-fortran/pull/560) ([timfelle](https://github.com/timfelle))

### [8.5.1](https://github.com/jacobwilliams/json-fortran/tree/8.5.1) (2024-05-26)

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 8.5.1
VERSION 8.5.2
LANGUAGES Fortran
)

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.

* [8.5.2](https://jacobwilliams.github.io/json-fortran/prev/8.5.2/index.html)
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/8.5.2)
* [8.5.1](https://jacobwilliams.github.io/json-fortran/prev/8.5.1/index.html)
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/8.5.1)
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 = '8.5.1'
character(kind=json_CK,len=*),parameter,private :: version = '8.5.2'
!! JSON-Fortran version.
!!
!!@note This string should match the one in the `.VERSION` file (which is used
Expand Down

0 comments on commit 99106c0

Please sign in to comment.