diff --git a/.VERSION b/.VERSION index 66ce77b7ea..a3fcc7121b 100644 --- a/.VERSION +++ b/.VERSION @@ -1 +1 @@ -7.0.0 +7.1.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dfd8a9338..8315e1addf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ - [Change Log](#change-log) - [Unreleased](#unreleased) + - [7.1.0 (2019-06-23)](#710-2019-06-23) - [7.0.0 (2019-01-26)](#700-2019-01-26) - [6.11.0 (2019-01-19)](#611-2019-01-19) - [6.10.0 (2019-10-20)](#610-2019-10-20) @@ -35,7 +36,22 @@ ### [Unreleased](https://github.com/jacobwilliams/json-fortran/tree/HEAD) -[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/7.0.0...HEAD) +[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/7.1.0...HEAD) + +### [7.1.0](https://github.com/jacobwilliams/json-fortran/tree/7.1.0) (2019-06-23) + +[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/7.0.0...7.1.0) +or [Download v7.1.0](https://github.com/jacobwilliams/json-fortran/releases/tag/7.1.0) + +**Enhancements:** + +- Added a Visual Studio Code workspace file [\#399](https://github.com/jacobwilliams/json-fortran/issues/399) [\#400](https://github.com/jacobwilliams/json-fortran/pull/400) ([jacobwilliams](https://github.com/jacobwilliams)) +- Improvements to `json_value_get_child_by_index` efficiency [\#401](https://github.com/jacobwilliams/json-fortran/issues/401) [\#402](https://github.com/jacobwilliams/json-fortran/pull/402) ([jacobwilliams](https://github.com/jacobwilliams)) +- Updates to CMake install rule for better compatibility with Visual Studio [\#396](https://github.com/jacobwilliams/json-fortran/pull/396) ([zbeekman](https://github.com/zbeekman)) + +**Bug fixes:** +- Fix for undeclared variable causing failing test on Mac [\#392](https://github.com/jacobwilliams/json-fortran/pull/392) ([porteri](https://github.com/porteri)) +- Fixed a bug where using `json%add()` to create new variables in a structure would stop the program if `stop_on_failure` was enabled. [\#403](https://github.com/jacobwilliams/json-fortran/issues/403) [\#404](https://github.com/jacobwilliams/json-fortran/pull/404) ([jacobwilliams](https://github.com/jacobwilliams)) ### [7.0.0](https://github.com/jacobwilliams/json-fortran/tree/7.0.0) (2019-01-26) diff --git a/README.md b/README.md index f90751fbcd..2e5e3abdab 100644 --- a/README.md +++ b/README.md @@ -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} 7.0.0 REQUIRED ) +find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 7.1.0 REQUIRED ) include_directories ( "${jsonfortran_INCLUDE_DIRS}" ) file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.F90" ) diff --git a/pages/releases/index.md b/pages/releases/index.md index 5c0ee1272b..33db29c932 100644 --- a/pages/releases/index.md +++ b/pages/releases/index.md @@ -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. +* [7.1.0](http://jacobwilliams.github.io/json-fortran/7.1.0/index.html) + ([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation) + - [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/7.1.0) * [7.0.0](http://jacobwilliams.github.io/json-fortran/7.0.0/index.html) ([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation) - [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/7.0.0)