Skip to content

Commit a507000

Browse files
committed
Updates for 4.2.0 release.
1 parent 331bde2 commit a507000

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

CHANGELOG.md

+13-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [4.2.0 (2015-08-03)](#420-2015-08-03)
78
- [4.1.1 (2015-05-27)](#411-2015-05-27)
89
- [4.1.0 (2015-05-05)](#410-2015-05-05)
910
- [4.0.0 (2015-03-16)](#400-2015-03-16)
@@ -14,10 +15,20 @@
1415

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

17-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/4.1.1...HEAD)
18+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/4.2.0...HEAD)
19+
20+
### [4.2.0](https://github.com/jacobwilliams/json-fortran/tree/4.2.0) (2015-08-03)
21+
22+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/4.1.1...4.2.0)
23+
or [Download v4.2.0](https://github.com/jacobwilliams/json-fortran/releases/tag/4.2.0)
1824

1925
**Enhancements**
2026

27+
- The ```exception_thrown``` flag is now true by default before the ```json_initialize``` routine is called to initialize the module. [\#142](https://github.com/jacobwilliams/json-fortran/issues/142) ([jacobwilliams](https://github.com/jacobwilliams))
28+
- Updated ```json_info``` to get name of ```json_value``` variable.
29+
[\#141](https://github.com/jacobwilliams/json-fortran/issues/141) ([jacobwilliams](https://github.com/jacobwilliams))
30+
- Added a new routine (```json_traverse```) to traverse all nodes of a JSON structure [\#140](https://github.com/jacobwilliams/json-fortran/issues/140)
31+
via [PR \#144](https://github.com/jacobwilliams/json-fortran/pull/144) from ([jacobwilliams](https://github.com/jacobwilliams))
2132
- Added FORD documentation automatic deployment via
2233
[PR \#137](https://github.com/jacobwilliams/json-fortran/pull/137)
2334
from [zbeekman](https://github.com/zbeekman)
@@ -30,7 +41,7 @@
3041
[\#117](https://github.com/jacobwilliams/json-fortran/issues/117)
3142
via
3243
[PR \#137](https://github.com/jacobwilliams/json-fortran/pull/137)
33-
from [zbeekman](https://github.com/zbeekman)
44+
from [zbeekman](https://github.com/zbeekman), and [\#143](https://github.com/jacobwilliams/json-fortran/issues/143) from [jacobwilliams](https://github.com/jacobwilliams)
3445
- Removed official SCons support to facilitate faster development
3546
cycle,
3647
[\#121](https://github.com/jacobwilliams/json-fortran/issues/121)
@@ -93,7 +104,6 @@
93104
[\#130](https://github.com/jacobwilliams/json-fortran/pull/130)
94105
([zbeekman](https://github.com/zbeekman))
95106

96-
97107
### [4.1.1](https://github.com/jacobwilliams/json-fortran/tree/4.1.1) (2015-05-27)
98108

99109
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/4.1.0...4.1.1)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ cmake_minimum_required ( VERSION 2.8.8 FATAL_ERROR )
120120
enable_language ( Fortran )
121121
project ( jf_test NONE )
122122
123-
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 4.1.1 REQUIRED )
123+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 4.2.0 REQUIRED )
124124
include_directories ( "${jsonfortran_INCLUDE_DIRS}" )
125125
126126
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.f90" )

__VERSION__

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.1.1
1+
4.2.0

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

0 commit comments

Comments
 (0)