Skip to content

Commit d39cfcb

Browse files
committed
Prepare 7.1.0 release.
1 parent b81f46d commit d39cfcb

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

.VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.0.0
1+
7.1.0

CHANGELOG.md

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

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [7.1.0 (2019-06-23)](#710-2019-06-23)
78
- [7.0.0 (2019-01-26)](#700-2019-01-26)
89
- [6.11.0 (2019-01-19)](#611-2019-01-19)
910
- [6.10.0 (2019-10-20)](#610-2019-10-20)
@@ -35,7 +36,22 @@
3536

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

38-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/7.0.0...HEAD)
39+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/7.1.0...HEAD)
40+
41+
### [7.1.0](https://github.com/jacobwilliams/json-fortran/tree/7.1.0) (2019-06-23)
42+
43+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/7.0.0...7.1.0)
44+
or [Download v7.1.0](https://github.com/jacobwilliams/json-fortran/releases/tag/7.1.0)
45+
46+
**Enhancements:**
47+
48+
- 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))
49+
- 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))
50+
- 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))
51+
52+
**Bug fixes:**
53+
- Fix for undeclared variable causing failing test on Mac [\#392](https://github.com/jacobwilliams/json-fortran/pull/392) ([porteri](https://github.com/porteri))
54+
- 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))
3955

4056
### [7.0.0](https://github.com/jacobwilliams/json-fortran/tree/7.0.0) (2019-01-26)
4157

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} 7.0.0 REQUIRED )
124+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 7.1.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+
* [7.1.0](http://jacobwilliams.github.io/json-fortran/7.1.0/index.html)
29+
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
30+
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/7.1.0)
2831
* [7.0.0](http://jacobwilliams.github.io/json-fortran/7.0.0/index.html)
2932
([FORD](https://github.com/Fortran-FOSS-Programmers/ford) generated documentation)
3033
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/7.0.0)

0 commit comments

Comments
 (0)