Skip to content

Commit

Permalink
bump version, add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrishavlin committed Oct 25, 2023
1 parent 947bf4e commit 6bed580
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
# 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)
4 changes: 2 additions & 2 deletions vbr/support/vbr_version.m
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
function Version = vbr_version()
% return the current VBRc version
Version.major = 1;
Version.minor = 0;
Version.patch = 1;
Version.minor = 1;
Version.patch = 0;
Version.version = [num2str(Version.major), '.', ...
num2str(Version.minor), '.', ...
num2str(Version.patch)];
Expand Down

0 comments on commit 6bed580

Please sign in to comment.