Skip to content

Commit 2b26675

Browse files
committed
prepare 6.2.0 release.
1 parent 2634f7c commit 2b26675

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

.VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.1.0
1+
6.2.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+
- [6.2.0 (2018-03-10)](#620-2018-03-10)
78
- [6.1.0 (2017-11-05)](#610-2017-11-05)
89
- [6.0.0 (2017-08-24)](#600-2017-08-24)
910
- [5.3.0 (2017-04-07)](#530-2017-04-07)
@@ -24,7 +25,22 @@
2425

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

27-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.1.0...HEAD)
28+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.2.0...HEAD)
29+
30+
### [6.2.0](https://github.com/jacobwilliams/json-fortran/tree/6.2.0) (2018-03-10)
31+
32+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.1.0...6.2.0)
33+
or [Download v6.2.0](https://github.com/jacobwilliams/json-fortran/releases/tag/6.2.0)
34+
35+
**Enhancements:**
36+
37+
- Allow the unit tests to be run from within the Visual Studio solution [\#295](https://github.com/jacobwilliams/json-fortran/issues/295) ([Hugh-walsh](https://github.com/Hugh-walsh), [jacobwilliams](https://github.com/jacobwilliams))
38+
- Compiling now works for the CMake-produced Visual Studio solution on Windows (note that the CMake-produced solution is a bit different from the other one provided). [\#70](https://github.com/jacobwilliams/json-fortran/issues/70) [\#309](https://github.com/jacobwilliams/json-fortran/pull/309) ([handrake0724](https://github.com/handrake0724), [jacobwilliams](https://github.com/jacobwilliams))
39+
- Added a new option `escape_solidus` to specify if the forward slash ("`/`") is to be escaped when serializing JSON. By default, it is no longer escaped (this changes the behavior introduced in 6.0.0) [\#304](https://github.com/jacobwilliams/json-fortran/issues/304) [\#305](https://github.com/jacobwilliams/json-fortran/pull/305) ([jacobwilliams](https://github.com/jacobwilliams))
40+
41+
**Fixed issues:**
42+
43+
- Fixed an issue causing a problem with the NAG compiler [\#303](https://github.com/jacobwilliams/json-fortran/issues/303) ([jacobwilliams](https://github.com/jacobwilliams))
2844

2945
### [6.1.0](https://github.com/jacobwilliams/json-fortran/tree/6.1.0) (2017-11-05)
3046

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ Currently, several ways are provided to build the JSON-fortran library
9696

9797
* A [CMake](http://www.cmake.org) build
9898
system is provided. This build system has been tested on Mac and Linux
99-
using the Intel Fortran Compiler, gfortran 4.9, and NAG Fortran 6.0. It has not been
100-
tested on Windows. This CMake based build provides an install target,
99+
using the Intel Fortran Compiler, gfortran 4.9, and NAG Fortran 6.0. It does also work on Windows (but note that the Visual Studio project it generates is not quite the same as the one mentioned above). This CMake based build provides an install target,
101100
and exports from both the install location and the build location so
102101
that building and using JSON-Fortran in another CMake based project is
103102
trivial. To get started with the CMake based build, set the
@@ -114,7 +113,7 @@ cmake_minimum_required ( VERSION 2.8.8 FATAL_ERROR )
114113
enable_language ( Fortran )
115114
project ( jf_test NONE )
116115
117-
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 6.1.0 REQUIRED )
116+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 6.2.0 REQUIRED )
118117
include_directories ( "${jsonfortran_INCLUDE_DIRS}" )
119118
120119
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+
* [6.2.0](http://jacobwilliams.github.io/json-fortran/6.2.0/index.html)
29+
([FORD](https://github.com/cmacmackin/ford) generated documentation)
30+
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.2.0)
2831
* [6.1.0](http://jacobwilliams.github.io/json-fortran/6.1.0/index.html)
2932
([FORD](https://github.com/cmacmackin/ford) generated documentation)
3033
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.1.0)

0 commit comments

Comments
 (0)