Skip to content

Commit 94e9509

Browse files
committed
Prepare 6.7.0 release.
1 parent 40d250a commit 94e9509

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

.VERSION

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

CHANGELOG.md

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

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [6.7.0 (2018-07-10)](#670-2018-07-10)
78
- [6.6.0 (2018-07-01)](#660-2018-07-01)
89
- [6.5.0 (2018-06-23)](#650-2018-06-23)
910
- [6.4.0 (2018-06-10)](#640-2018-06-10)
@@ -29,7 +30,25 @@
2930

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

32-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.6.0...HEAD)
33+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.7.0...HEAD)
34+
35+
36+
### [6.7.0](https://github.com/jacobwilliams/json-fortran/tree/6.7.0) (2018-07-10)
37+
38+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.6.0...6.7.0)
39+
or [Download v6.7.0](https://github.com/jacobwilliams/json-fortran/releases/tag/6.7.0)
40+
41+
**Enhancements:**
42+
43+
- Made the two arguments to `json_check_for_errors()` optional, so now either or both can be used. Note that if no error has been raised, then `error_msg` is now returned unallocated. [\#344](https://github.com/jacobwilliams/json-fortran/issues/344) [\#345](https://github.com/jacobwilliams/json-fortran/pull/345) ([jacobwilliams](https://github.com/jacobwilliams))
44+
- Added an additional error check in `json_value_print()` to check for an unassociated pointer. [\#342](https://github.com/jacobwilliams/json-fortran/issues/342) [\#343](https://github.com/jacobwilliams/json-fortran/pull/343) ([jacobwilliams](https://github.com/jacobwilliams))
45+
- Added `remove()` method to `json_file` [\#339](https://github.com/jacobwilliams/json-fortran/issues/339) [\#340](https://github.com/jacobwilliams/json-fortran/pull/340) ([jacobwilliams](https://github.com/jacobwilliams))
46+
- Added additional error checks to `json_value_add_member()`. Now it will raise an exception if try to add a child to a non-array or non-object. [\#337](https://github.com/jacobwilliams/json-fortran/issues/337) [\#338](https://github.com/jacobwilliams/json-fortran/pull/338) ([jacobwilliams](https://github.com/jacobwilliams))
47+
- Added some additional unit tests to increase coverage [\#336](https://github.com/jacobwilliams/json-fortran/pull/336) ([jacobwilliams](https://github.com/jacobwilliams))
48+
49+
**Fixed bugs:**
50+
51+
- Fixed a bug in `json_value_clone_func()` where it could crash if attempting to clone an array element. Updated this routine to improve behavior when cloning an array element (the subsequent entries are no longer cloned). [\#334](https://github.com/jacobwilliams/json-fortran/issues/334) [\#335](https://github.com/jacobwilliams/json-fortran/pull/335) ([jacobwilliams](https://github.com/jacobwilliams))
3352

3453
### [6.6.0](https://github.com/jacobwilliams/json-fortran/tree/6.6.0) (2018-07-01)
3554

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.6.0 REQUIRED )
124+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 6.7.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.7.0](http://jacobwilliams.github.io/json-fortran/6.7.0/index.html)
29+
([FORD](https://github.com/cmacmackin/ford) generated documentation)
30+
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.7.0)
2831
* [6.6.0](http://jacobwilliams.github.io/json-fortran/6.6.0/index.html)
2932
([FORD](https://github.com/cmacmackin/ford) generated documentation)
3033
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.6.0)

0 commit comments

Comments
 (0)