diff --git a/DESCRIPTION b/DESCRIPTION index 3569a2a..ff22447 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ name: apa -version: 0.1.3 -date: 2021-10-06 +version: 0.1.4 +date: 2021-10-26 author: Kai T. Ohlhus maintainer: Kai T. Ohlhus title: Octave/Matlab arbitrary precision arithmetic. diff --git a/README.md b/README.md index e76c9a2..34ae413 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ From the Octave command-line run: ```octave -pkg install 'https://github.com/gnu-octave/apa/releases/download/v0.1.3/apa-0.1.3.zip' +pkg install 'https://github.com/gnu-octave/apa/releases/download/v0.1.3/apa-0.1.4.zip' pkg load apa pkg test apa ``` @@ -13,10 +13,10 @@ pkg test apa From the Matlab command-line run (also works for Octave): ```matlab -urlwrite ('https://github.com/gnu-octave/apa/releases/download/v0.1.3/apa-0.1.3.zip', ... - 'apa-0.1.3.zip'); -unzip ('apa-0.1.3.zip'); -cd (fullfile ('apa-0.1.3', 'inst')) +urlwrite ('https://github.com/gnu-octave/apa/releases/download/v0.1.3/apa-0.1.4.zip', ... + 'apa-0.1.4.zip'); +unzip ('apa-0.1.4.zip'); +cd (fullfile ('apa-0.1.4', 'inst')) install_apa test_apa ``` diff --git a/doc/MEX_INTERFACE.md b/doc/MEX_INTERFACE.md index 2b999f5..298ebf2 100644 --- a/doc/MEX_INTERFACE.md +++ b/doc/MEX_INTERFACE.md @@ -10,10 +10,10 @@ If those pre-compiled libraries are missing or not working, please read below. From the Octave/Matlab command-line run: ```matlab -urlwrite ('https://github.com/gnu-octave/apa/releases/download/v0.1.3/apa-0.1.3.zip', ... - 'apa-0.1.3.zip'); -unzip ('apa-0.1.3.zip'); -cd (fullfile ('apa-0.1.3', 'inst')) +urlwrite ('https://github.com/gnu-octave/apa/releases/download/v0.1.3/apa-0.1.4.zip', ... + 'apa-0.1.4.zip'); +unzip ('apa-0.1.4.zip'); +cd (fullfile ('apa-0.1.4', 'inst')) install_apa test_apa ```