Skip to content

Commit

Permalink
Prepare 8.2.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwilliams committed Aug 16, 2021
1 parent 463f3f5 commit f5078a4
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.2.3
8.2.4
21 changes: 19 additions & 2 deletions 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.2.4 (2021-08-15)](#824-2021-08-15)
- [8.2.3 (2021-06-05)](#823-2021-06-05)
- [8.2.2 (2021-06-05)](#822-2021-06-05)
- [8.2.1 (2021-01-02)](#821-2021-01-02)
Expand Down Expand Up @@ -42,7 +43,23 @@

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

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

### [8.2.4](https://github.com/jacobwilliams/json-fortran/tree/8.2.4) (2021-08-15)

[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.2.3...8.2.4)
or [Download v8.2.4](https://github.com/jacobwilliams/json-fortran/releases/tag/8.2.4)

**Enhancements:**

- Documentation updates. [\#492](https://github.com/jacobwilliams/json-fortran/pull/492) ([jacobwilliams](https://github.com/jacobwilliams))
- Added `MultiProcessorCompilation="true"` to the Visual Studio project file.

**Bug Fixes:**

- 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))
- 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))
- Fixed a bug where some error messages would attempt to print unallocated `name` values. [\#491](https://github.com/jacobwilliams/json-fortran/issues/491)

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

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

- Added support for the Fortran Package Manger. [\#483](https://github.com/jacobwilliams/json-fortran/issues/483) ([jacobwilliams](https://github.com/jacobwilliams))
- 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))
- 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))
- Eliminated some compiler warnings about real conversions.

**Bug fixes:**
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ cmake_minimum_required ( VERSION 2.8.8 FATAL_ERROR )
enable_language ( Fortran )
project ( jf_test NONE )
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 8.2.3 REQUIRED )
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 8.2.4 REQUIRED )
include_directories ( "${jsonfortran_INCLUDE_DIRS}" )
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.F90" )
Expand Down
2 changes: 1 addition & 1 deletion pages/development-resources/release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ remain accurate.
1. Add `pages/releases/index.md` to the git index: `git add pages/releases/index.md`
1. Update the version string in remaining files requiring manual edits:
1. Edit the `.VERSION` file
1. Edit the CMake example on line 125 of `README.md`
1. Edit the CMake example on line 124 of `README.md`
1. Add both files to the git index: `git add .VERSION
README.md`
1. Commit the changes to the master branch: `git commit`
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.2.4](https://jacobwilliams.github.io/json-fortran/prev/8.2.4/index.html)
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/8.2.4)
* [8.2.3](https://jacobwilliams.github.io/json-fortran/prev/8.2.3/index.html)
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/8.2.3)
Expand Down

0 comments on commit f5078a4

Please sign in to comment.