Skip to content

Commit 4baff3b

Browse files
committed
Prepare 6.8.0 release
1 parent 1b8fb18 commit 4baff3b

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

.VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.7.0
1+
6.8.0

CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [6.8.0 (2018-07-19)](#680-2018-07-19)
78
- [6.7.0 (2018-07-10)](#670-2018-07-10)
89
- [6.6.0 (2018-07-01)](#660-2018-07-01)
910
- [6.5.0 (2018-06-23)](#650-2018-06-23)
@@ -30,8 +31,24 @@
3031

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

33-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.7.0...HEAD)
34+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.8.0...HEAD)
3435

36+
### [6.8.0](https://github.com/jacobwilliams/json-fortran/tree/6.8.0) (2018-07-19)
37+
38+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.7.0...6.8.0)
39+
or [Download v6.8.0](https://github.com/jacobwilliams/json-fortran/releases/tag/6.8.0)
40+
41+
**Enhancements:**
42+
43+
- Added some additional checks so that the `destroy` method could still be used to destroy some malformed JSON linked lists. Also updated the `validate` method to check for circular references.
44+
[\#346](https://github.com/jacobwilliams/json-fortran/issues/346) [\#349](https://github.com/jacobwilliams/json-fortran/pull/349) ([jacobwilliams](https://github.com/jacobwilliams))
45+
- Added missing arguments (`trim_str` and `adjustl_str`) to some of the string wrapper routines. [\#347](https://github.com/jacobwilliams/json-fortran/issues/347) [\#348](https://github.com/jacobwilliams/json-fortran/pull/348) ([jacobwilliams](https://github.com/jacobwilliams))
46+
- Various minor changes to remove some compiler warnings and a line length standards violation.
47+
- Various documentation string updates.
48+
49+
**Fixed bugs:**
50+
51+
- Fixed a dangling pointer bug in the `destroy` method that was causing unpredictable behavior in this routine which could cause a crash for some compilers [\#307](https://github.com/jacobwilliams/json-fortran/issues/307) [\#350](https://github.com/jacobwilliams/json-fortran/pull/350) ([jacobwilliams](https://github.com/jacobwilliams))
3552

3653
### [6.7.0](https://github.com/jacobwilliams/json-fortran/tree/6.7.0) (2018-07-10)
3754

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} 6.7.0 REQUIRED )
124+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 6.8.0 REQUIRED )
125125
include_directories ( "${jsonfortran_INCLUDE_DIRS}" )
126126
127127
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.F90" )

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+
* [6.8.0](http://jacobwilliams.github.io/json-fortran/6.8.0/index.html)
29+
([FORD](https://github.com/cmacmackin/ford) generated documentation)
30+
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.8.0)
2831
* [6.7.0](http://jacobwilliams.github.io/json-fortran/6.7.0/index.html)
2932
([FORD](https://github.com/cmacmackin/ford) generated documentation)
3033
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.7.0)

0 commit comments

Comments
 (0)