Skip to content

Commit f5078a4

Browse files
committed
Prepare 8.2.4 release
1 parent 463f3f5 commit f5078a4

File tree

5 files changed

+25
-5
lines changed

5 files changed

+25
-5
lines changed

.VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.2.3
1+
8.2.4

CHANGELOG.md

+19-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [8.2.4 (2021-08-15)](#824-2021-08-15)
78
- [8.2.3 (2021-06-05)](#823-2021-06-05)
89
- [8.2.2 (2021-06-05)](#822-2021-06-05)
910
- [8.2.1 (2021-01-02)](#821-2021-01-02)
@@ -42,7 +43,23 @@
4243

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

45-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.2.3...HEAD)
46+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.2.4...HEAD)
47+
48+
### [8.2.4](https://github.com/jacobwilliams/json-fortran/tree/8.2.4) (2021-08-15)
49+
50+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.2.3...8.2.4)
51+
or [Download v8.2.4](https://github.com/jacobwilliams/json-fortran/releases/tag/8.2.4)
52+
53+
**Enhancements:**
54+
55+
- Documentation updates. [\#492](https://github.com/jacobwilliams/json-fortran/pull/492) ([jacobwilliams](https://github.com/jacobwilliams))
56+
- Added `MultiProcessorCompilation="true"` to the Visual Studio project file.
57+
58+
**Bug Fixes:**
59+
60+
- Fixed a memory leak when deserializing an empty list. [\#488](https://github.com/jacobwilliams/json-fortran/issues/488) [\#493](https://github.com/jacobwilliams/json-fortran/pull/493) ([jacobwilliams](https://github.com/jacobwilliams))
61+
- Fixed a memory leak when cloning a JSON pointer. [\#489](https://github.com/jacobwilliams/json-fortran/issues/489) [\#490](https://github.com/jacobwilliams/json-fortran/pull/490) ([jacobwilliams](https://github.com/jacobwilliams))
62+
- Fixed a bug where some error messages would attempt to print unallocated `name` values. [\#491](https://github.com/jacobwilliams/json-fortran/issues/491)
4663

4764
### [8.2.3](https://github.com/jacobwilliams/json-fortran/tree/8.2.3) (2020-06-05)
4865

@@ -61,7 +78,7 @@ or [Download v8.2.2](https://github.com/jacobwilliams/json-fortran/releases/tag/
6178
**Enhancements:**
6279

6380
- Added support for the Fortran Package Manger. [\#483](https://github.com/jacobwilliams/json-fortran/issues/483) ([jacobwilliams](https://github.com/jacobwilliams))
64-
- Updated CI to use GitHub Actions, including auto-deployment of documentation. [\#476](https://github.com/jacobwilliams/json-fortran/issues/476) [\#484](https://github.com/jacobwilliams/json-fortran/pull/484) ([jacobwilliams](https://github.com/jacobwilliams))
81+
- Updated CI to use GitHub Actions, including auto-deployment of documentation. [\#476](https://github.com/jacobwilliams/json-fortran/issues/476) [\#484](https://github.com/jacobwilliams/json-fortran/pull/484) ([jacobwilliams](https://github.com/jacobwilliams))
6582
- Eliminated some compiler warnings about real conversions.
6683

6784
**Bug fixes:**

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ cmake_minimum_required ( VERSION 2.8.8 FATAL_ERROR )
121121
enable_language ( Fortran )
122122
project ( jf_test NONE )
123123
124-
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 8.2.3 REQUIRED )
124+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 8.2.4 REQUIRED )
125125
include_directories ( "${jsonfortran_INCLUDE_DIRS}" )
126126
127127
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.F90" )

pages/development-resources/release-checklist.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ remain accurate.
5252
1. Add `pages/releases/index.md` to the git index: `git add pages/releases/index.md`
5353
1. Update the version string in remaining files requiring manual edits:
5454
1. Edit the `.VERSION` file
55-
1. Edit the CMake example on line 125 of `README.md`
55+
1. Edit the CMake example on line 124 of `README.md`
5656
1. Add both files to the git index: `git add .VERSION
5757
README.md`
5858
1. Commit the changes to the master branch: `git commit`

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+
* [8.2.4](https://jacobwilliams.github.io/json-fortran/prev/8.2.4/index.html)
29+
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
30+
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/8.2.4)
2831
* [8.2.3](https://jacobwilliams.github.io/json-fortran/prev/8.2.3/index.html)
2932
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
3033
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/8.2.3)

0 commit comments

Comments
 (0)