Skip to content

Commit 37de3ad

Browse files
committed
prepare 6.1.0 release.
1 parent e0b6826 commit 37de3ad

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

.VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.0.0
1+
6.1.0

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [6.1.0 (2017-11-05)](#610-2017-11-05)
78
- [6.0.0 (2017-08-24)](#600-2017-08-24)
89
- [5.3.0 (2017-04-07)](#530-2017-04-07)
910
- [5.2.0 (2017-03-05)](#520-2017-03-05)
@@ -23,7 +24,23 @@
2324

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

26-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.0.0...HEAD)
27+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.1.0...HEAD)
28+
29+
### [6.1.0](https://github.com/jacobwilliams/json-fortran/tree/6.1.0) (2017-11-05)
30+
31+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.0.0...6.1.0)
32+
or [Download v6.1.0](https://github.com/jacobwilliams/json-fortran/releases/tag/6.1.0)
33+
34+
**Enhancements:**
35+
36+
- Added an optional `allow_duplicate_keys` argument to the various `initialize` routines. This is True by default. If False, then duplicate keys are considered an error. Also added `check_for_duplicate_keys` and `check_children_for_duplicate_keys` methods that can be called. [\#250](https://github.com/jacobwilliams/json-fortran/issues/250) [\#290](https://github.com/jacobwilliams/json-fortran/pull/290) ([jacobwilliams](https://github.com/jacobwilliams))
37+
- Added support for JSONPath "bracket-notation" mode for specifying paths to JSON variables. [\#266](https://github.com/jacobwilliams/json-fortran/issues/266) [\#292](https://github.com/jacobwilliams/json-fortran/pull/292) ([jacobwilliams](https://github.com/jacobwilliams))
38+
39+
**Fixed issues:**
40+
41+
- Replaced `CMAKE_INSTALL_LIBDIR` with `INSTALL_LIB_DIR` in the CMake project. [\#286](https://github.com/jacobwilliams/json-fortran/pull/286) ([foeroyingur](https://github.com/foeroyingur))
42+
- Fixed bug in the `lowercase_string` routine that could cause a crash for Debug builds. [\#293](https://github.com/jacobwilliams/json-fortran/issues/293) [\#294](https://github.com/jacobwilliams/json-fortran/pull/294) ([jacobwilliams](https://github.com/jacobwilliams))
43+
2744

2845
### [6.0.0](https://github.com/jacobwilliams/json-fortran/tree/6.0.0) (2017-08-24)
2946

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ cmake_minimum_required ( VERSION 2.8.8 FATAL_ERROR )
114114
enable_language ( Fortran )
115115
project ( jf_test NONE )
116116
117-
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 6.0.0 REQUIRED )
117+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 6.1.0 REQUIRED )
118118
include_directories ( "${jsonfortran_INCLUDE_DIRS}" )
119119
120120
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.f90" )

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.1.0](http://jacobwilliams.github.io/json-fortran/6.1.0/index.html)
29+
([FORD](https://github.com/cmacmackin/ford) generated documentation)
30+
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.1.0)
2831
* [6.0.0](http://jacobwilliams.github.io/json-fortran/6.0.0/index.html)
2932
([FORD](https://github.com/cmacmackin/ford) generated documentation)
3033
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.0.0)

0 commit comments

Comments
 (0)