diff --git a/release_notes.md b/release_notes.md index a4ac07b..2cc46bd 100644 --- a/release_notes.md +++ b/release_notes.md @@ -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. diff --git a/vbr/support/vbr_version.m b/vbr/support/vbr_version.m index 4b55ef4..628e50f 100644 --- a/vbr/support/vbr_version.m +++ b/vbr/support/vbr_version.m @@ -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