Skip to content

Commit 1416d37

Browse files
committed
preparing 5.0.1 release.
1 parent 511c0c4 commit 1416d37

File tree

3 files changed

+21
-4
lines changed

3 files changed

+21
-4
lines changed

CHANGELOG.md

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

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [5.0.1 (2016-06-11)](#501-2016-06-11)
78
- [5.0.0 (2016-05-09)](#500-2016-05-09)
89
- [4.3.0 (2015-12-05)](#430-2015-12-05)
910
- [4.2.0 (2015-08-03)](#420-2015-08-03)
@@ -17,7 +18,23 @@
1718

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

20-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/5.0.0...HEAD)
21+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/5.0.1...HEAD)
22+
23+
### [5.0.1](https://github.com/jacobwilliams/json-fortran/tree/5.0.1) (2016-06-11)
24+
25+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/5.0.0...5.0.1)
26+
or [Download v5.0.1](https://github.com/jacobwilliams/json-fortran/releases/tag/5.0.1)
27+
28+
*Note: This release contains no changes to the library, only the build system and documentation.*
29+
30+
**Fixed issues:**
31+
32+
- FORD now uses the Intel preprocessor when library is built with the Intel compiler [\#205](https://github.com/jacobwilliams/json-fortran/issues/205)
33+
- ShellCheck script files [\#181](https://github.com/jacobwilliams/json-fortran/issues/181)
34+
35+
**Merged pull requests:**
36+
37+
- De-lint shell scripts with ShellCheck, debug FORD upgrade, and various updates to documentation and build system. [\#201](https://github.com/jacobwilliams/json-fortran/pull/201) ([zbeekman](https://github.com/zbeekman))
2138

2239
### [5.0.0](https://github.com/jacobwilliams/json-fortran/tree/5.0.0) (2016-05-09)
2340

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,15 +114,15 @@ 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.0.0 REQUIRED )
117+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 5.0.1 REQUIRED )
118118
include_directories ( "${jsonfortran_INCLUDE_DIRS}" )
119119
120120
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.f90" )
121121
foreach ( UNIT_TEST ${JF_TEST_SRCS} )
122122
get_filename_component ( TEST ${UNIT_TEST} NAME_WE )
123123
add_executable ( ${TEST} ${UNIT_TEST} )
124124
target_link_libraries ( ${TEST} jsonfortran-static )
125-
# or for linking against the dynamic/shareed library:
125+
# or for linking against the dynamic/shared library:
126126
# target_link_libraries ( ${TEST} jsonfortran ) # instead
127127
endforeach()
128128
```

__VERSION__

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.0
1+
5.0.1

0 commit comments

Comments
 (0)