diff --git a/release_history.md b/release_history.md index 4eade0e..fd795af 100644 --- a/release_history.md +++ b/release_history.md @@ -1,3 +1,18 @@ +# v1.1.0 + +## new features + +- allow user-specified unrelaxed shear and bulk moduli [#63](https://github.com/vbr-calc/vbr/pull/63) +- updates to documentation [#68](https://github.com/vbr-calc/vbr/pull/68), [#57](https://github.com/vbr-calc/vbr/issues/57) + +## bug fixes + +no bugs + +## changes + +- improved error messages in test framework [#65](https://github.com/vbr-calc/vbr/issues/65) + # v1.0.1 Bug fix release. diff --git a/release_notes.md b/release_notes.md index 187ae38..8e4a706 100644 --- a/release_notes.md +++ b/release_notes.md @@ -1,14 +1,7 @@ -# v1.1.0 +# v1.1.1 -## new features - -- allow user-specified unrelaxed shear and bulk moduli [#63](https://github.com/vbr-calc/vbr/pull/63) -- updates to documentation [#68](https://github.com/vbr-calc/vbr/pull/68), [#57](https://github.com/vbr-calc/vbr/issues/57) +Minor bug fix release ## bug fixes -no bugs - -## changes - -- improved error messages in test framework [#65](https://github.com/vbr-calc/vbr/issues/65) +- fix for zenodo sync diff --git a/vbr/support/vbr_version.m b/vbr/support/vbr_version.m index d0932c4..ab71f7c 100644 --- a/vbr/support/vbr_version.m +++ b/vbr/support/vbr_version.m @@ -2,7 +2,7 @@ % return the current VBRc version Version.major = 1; Version.minor = 1; - Version.patch = 0; + Version.patch = 1; Version.version = [num2str(Version.major), '.', ... num2str(Version.minor), '.', ... num2str(Version.patch)];