Skip to content

Commit 17856ed

Browse files
committed
prepare 8.1.0 release.
1 parent 05dc7f6 commit 17856ed

File tree

5 files changed

+26
-4
lines changed

5 files changed

+26
-4
lines changed

.VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.0.0
1+
8.1.0

CHANGELOG.md

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

55
- [Change Log](#change-log)
66
- [Unreleased](#unreleased)
7+
- [8.1.0 (2020-06-21)](#800-2020-06-21)
78
- [8.0.0 (2020-04-04)](#800-2020-04-04)
89
- [7.1.0 (2019-06-23)](#710-2019-06-23)
910
- [7.0.0 (2019-01-26)](#700-2019-01-26)
@@ -37,7 +38,25 @@
3738

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

40-
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.0.0...HEAD)
41+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.1.0...HEAD)
42+
43+
### [8.1.0](https://github.com/jacobwilliams/json-fortran/tree/8.1.0) (2020-06-21)
44+
45+
[Complete Changeset](https://github.com/jacobwilliams/json-fortran/compare/8.0.0...8.1.0)
46+
or [Download v8.1.0](https://github.com/jacobwilliams/json-fortran/releases/tag/8.1.0)
47+
48+
**Enhancements:**
49+
50+
- Added a `json_file = string` assignment operator [\#463](https://github.com/jacobwilliams/json-fortran/issues/463) [\#464](https://github.com/jacobwilliams/json-fortran/pull/464) [\#465](https://github.com/jacobwilliams/json-fortran/pull/465) ([jacobwilliams](https://github.com/jacobwilliams))
51+
- Added support for multiple comment characters. The default is now to recognize any of `#!/` as comment lines. [\#456](https://github.com/jacobwilliams/json-fortran/issues/456) [\#461](https://github.com/jacobwilliams/json-fortran/pull/461) ([jacobwilliams](https://github.com/jacobwilliams))
52+
- Added `recursive` attribute to `json_get_array` [\#291](https://github.com/jacobwilliams/json-fortran/issues/291) [\#453](https://github.com/jacobwilliams/json-fortran/pull/453) ([jacobwilliams](https://github.com/jacobwilliams))
53+
- Added optional "default" argument to `json_get_*_by_path` routines [\#208](https://github.com/jacobwilliams/json-fortran/issues/208) [\#462](https://github.com/jacobwilliams/json-fortran/pull/462) ([jacobwilliams](https://github.com/jacobwilliams))
54+
- Updated readme to document the cmake build instructions [\#455](https://github.com/jacobwilliams/json-fortran/issues/455) ([jacobwilliams](https://github.com/jacobwilliams))
55+
56+
**Bug fixes:**
57+
58+
- Fixed bug in `json_get_path` [\#452](https://github.com/jacobwilliams/json-fortran/issues/452) [\#454](https://github.com/jacobwilliams/json-fortran/pull/454) ([jacobwilliams](https://github.com/jacobwilliams))
59+
4160

4261
### [8.0.0](https://github.com/jacobwilliams/json-fortran/tree/8.0.0) (2020-04-04)
4362

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ cmake_minimum_required ( VERSION 2.8.8 FATAL_ERROR )
122122
enable_language ( Fortran )
123123
project ( jf_test NONE )
124124
125-
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 8.0.0 REQUIRED )
125+
find_package ( jsonfortran-${CMAKE_Fortran_COMPILER_ID} 8.1.0 REQUIRED )
126126
include_directories ( "${jsonfortran_INCLUDE_DIRS}" )
127127
128128
file ( GLOB JF_TEST_SRCS "src/tests/jf_test_*.F90" )

pages/development-resources/release-checklist.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ remain accurate.
5252
1. Add `pages/releases/index.md` to the git index: `git add pages/releases/index.md`
5353
1. Update the version string in remaining files requiring manual edits:
5454
1. Edit the `.VERSION` file
55-
1. Edit the CMake example on line 124 of `README.md`
55+
1. Edit the CMake example on line 125 of `README.md`
5656
1. Add both files to the git index: `git add .VERSION
5757
README.md`
5858
1. Commit the changes to the master branch: `git commit`

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

0 commit comments

Comments
 (0)