Skip to content

Commit

Permalink
Prepare 6.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobwilliams committed Jul 2, 2018
1 parent b0649d1 commit 86f9a7d
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 @@
6.5.0
6.6.0
21 changes: 19 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

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

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

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

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

[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.5.0...6.6.0)
or [Download v6.6.0](https://github.com/jacobwilliams/json-fortran/releases/tag/6.6.0)

**Enhancements [\#332](https://github.com/jacobwilliams/json-fortran/pull/332) ([jacobwilliams](https://github.com/jacobwilliams))**

- 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)
- 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)
- 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)
- Various documentation string updates.

**Fixed bugs:**

- 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)

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

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ cmake_minimum_required ( VERSION 2.8.8 FATAL_ERROR )
enable_language ( Fortran )
project ( jf_test NONE )
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 6.5.0 REQUIRED )
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 6.6.0 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 131 of `README.md`
1. Edit the CMake example on line 129 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.

* [6.6.0](http://jacobwilliams.github.io/json-fortran/6.6.0/index.html)
([FORD](https://github.com/cmacmackin/ford) generated documentation)
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.6.0)
* [6.5.0](http://jacobwilliams.github.io/json-fortran/6.5.0/index.html)
([FORD](https://github.com/cmacmackin/ford) generated documentation)
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.5.0)
Expand Down

0 comments on commit 86f9a7d

Please sign in to comment.