Skip to content

Commit 8695635

Browse files
committed
preparing 6.0.0 release.
1 parent 9c38bbb commit 8695635

File tree

5 files changed

+26
-8
lines changed

5 files changed

+26
-8
lines changed

.VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.3.0
1+
6.0.0

.gitignore

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ doc/
1111
.sconsign.*
1212
files/*.json
1313
.cflags.*
14-
visual_studio_2010/*.suo
15-
visual_studio_2010/*.u2d
16-
visual_studio_2010/Debug/
17-
visual_studio_2010/Release/
18-
visual_studio_2010/x64/
14+
visual_studio/*.suo
15+
visual_studio/*.u2d
16+
visual_studio/Debug/
17+
visual_studio/Release/
18+
visual_studio/x64/

CHANGELOG.md

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

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [6.0.0 (2017-08-24)](#600-2017-08-24)
78
- [5.3.0 (2017-04-07)](#530-2017-04-07)
89
- [5.2.0 (2017-03-05)](#520-2017-03-05)
910
- [5.1.0 (2016-08-14)](#510-2016-08-14)
@@ -22,7 +23,21 @@
2223

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

25-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/5.3.0...HEAD)
26+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/6.0.0...HEAD)
27+
28+
### [6.0.0](https://github.com/jacobwilliams/json-fortran/tree/6.0.0) (2017-08-24)
29+
30+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/5.3.0...6.0.0)
31+
or [Download v6.0.0](https://github.com/jacobwilliams/json-fortran/releases/tag/6.0.0)
32+
33+
**Enhancements:**
34+
35+
- Added a routine to reverse an array or object [\#280](https://github.com/jacobwilliams/json-fortran/issues/280) [\#281](https://github.com/jacobwilliams/json-fortran/pull/281) ([jacobwilliams](https://github.com/jacobwilliams))
36+
37+
**Fixed issues:**
38+
39+
- Fixed a bug where using `no_whitespace` mode could still print line breaks in some cases [\#288](https://github.com/jacobwilliams/json-fortran/issues/288) ([jacobwilliams](https://github.com/jacobwilliams))
40+
- Strings (name key and value) were not being properly escaped/unescaped in some contexts. This change introduces a small backward incompatibility (formerly, if keys contained escape characters, the user would have to include them when getting their value). Now, the string variables in all user-facing API calls are unescaped (i.e., the user does not have to manually escape the keys to get their associated value). All strings are also now properly returned unescaped, no matter how the JSON structure was constructed. Escaping is now done in all cases if necessary when the JSON is printed to a string, file or the console. [\#287](https://github.com/jacobwilliams/json-fortran/issues/287) [\#289](https://github.com/jacobwilliams/json-fortran/pull/289) ([jacobwilliams](https://github.com/jacobwilliams))
2641

2742
### [5.3.0](https://github.com/jacobwilliams/json-fortran/tree/5.3.0) (2017-04-07)
2843

README.md

+1-1
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} 5.3.0 REQUIRED )
117+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 6.0.0 REQUIRED )
118118
include_directories ( "${jsonfortran_INCLUDE_DIRS}" )
119119
120120
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.0.0](http://jacobwilliams.github.io/json-fortran/6.0.0/index.html)
29+
([FORD](https://github.com/cmacmackin/ford) generated documentation)
30+
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/6.0.0)
2831
* [5.3.0](http://jacobwilliams.github.io/json-fortran/5.3.0/index.html)
2932
([FORD](https://github.com/cmacmackin/ford) generated documentation)
3033
- [Download](https://github.com/jacobwilliams/json-fortran/releases/tag/5.3.0)

0 commit comments

Comments
 (0)