Skip to content

Commit

Permalink
Merge pull request #144 from chrishavlin/release_prep_120
Browse files Browse the repository at this point in the history
relase prep v1.2.0
  • Loading branch information
chrishavlin authored Nov 14, 2024
2 parents bd32856 + 6585476 commit 29223d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion release_notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v1.1.2dev
# v1.2.0

## New Features
* new method: analytical_andrade, see [documentation](https://vbr-calc.github.io/vbr/vbrmethods/anel/andradeanalytical/) for detials.
Expand Down
6 changes: 3 additions & 3 deletions vbr/support/vbr_version.m
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
function Version = vbr_version()
% return the current VBRc version
Version.major = 1;
Version.minor = 1;
Version.patch = 2;
Version.minor = 2;
Version.patch = 0;
Version.version = [num2str(Version.major), '.', ...
num2str(Version.minor), '.', ...
num2str(Version.patch)];
Version.is_development = 1;
Version.is_development = 0;
if Version.is_development == 1
Version.version = [Version.version, 'dev'];
end
Expand Down

0 comments on commit 29223d6

Please sign in to comment.