Skip to content

Commit 86f9a7d

Browse files
committed
Prepare 6.6.0 release
1 parent b0649d1 commit 86f9a7d

File tree

5 files changed

+25
-5
lines changed

5 files changed

+25
-5
lines changed

.VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.5.0
1+
6.6.0

CHANGELOG.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7-
- [6.5.0 (2018-06-23)](#640-2018-06-23)
7+
- [6.6.0 (2018-07-01)](#660-2018-07-01)
8+
- [6.5.0 (2018-06-23)](#650-2018-06-23)
89
- [6.4.0 (2018-06-10)](#640-2018-06-10)
910
- [6.3.0 (2018-04-20)](#630-2018-04-20)
1011
- [6.2.0 (2018-03-10)](#620-2018-03-10)
@@ -28,7 +29,23 @@
2829

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

31-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.5.0...HEAD)
32+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.6.0...HEAD)
33+
34+
### [6.6.0](https://github.com/jacobwilliams/json-fortran/tree/6.6.0) (2018-07-01)
35+
36+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.5.0...6.6.0)
37+
or [Download v6.6.0](https://github.com/jacobwilliams/json-fortran/releases/tag/6.6.0)
38+
39+
**Enhancements [\#332](https://github.com/jacobwilliams/json-fortran/pull/332) ([jacobwilliams](https://github.com/jacobwilliams))**
40+
41+
- Now, attempting to get a string variable as an integer, double, or logical will attempt to convert it to a string if `strict_type_checking=False`. Formerly these cases would raise an exception. [\#331](https://github.com/jacobwilliams/json-fortran/issues/331)
42+
- Fixed an inconsistency in `json_get_by_path()`. Now if using the optional `found` argument, any exceptions raised by this routine are cleared. [\#330](https://github.com/jacobwilliams/json-fortran/issues/330)
43+
- Changed the `name` argument in `json_value_remove_if_present()` to 'path' to be consistent with other routines since it is really a path. [\#329](https://github.com/jacobwilliams/json-fortran/issues/329)
44+
- Various documentation string updates.
45+
46+
**Fixed bugs:**
47+
48+
- Fixed a bug in `wrap_json_get_path()` where an optional argument was being used without checking if it was present. [\#333](https://github.com/jacobwilliams/json-fortran/issues/333)
3249

3350
### [6.5.0](https://github.com/jacobwilliams/json-fortran/tree/6.5.0) (2018-06-23)
3451

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ cmake_minimum_required ( VERSION 2.8.8 FATAL_ERROR )
126126
enable_language ( Fortran )
127127
project ( jf_test NONE )
128128
129-
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 6.5.0 REQUIRED )
129+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 6.6.0 REQUIRED )
130130
include_directories ( "${jsonfortran_INCLUDE_DIRS}" )
131131
132132
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.F90" )

pages/development-resources/release-checklist.md

Lines changed: 1 addition & 1 deletion
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 131 of `README.md`
55+
1. Edit the CMake example on line 129 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

Lines changed: 3 additions & 0 deletions
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.6.0](http://jacobwilliams.github.io/json-fortran/6.6.0/index.html)
29+
([FORD](https://github.com/cmacmackin/ford) generated documentation)
30+
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.6.0)
2831
* [6.5.0](http://jacobwilliams.github.io/json-fortran/6.5.0/index.html)
2932
([FORD](https://github.com/cmacmackin/ford) generated documentation)
3033
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.5.0)

0 commit comments

Comments
 (0)