diff --git a/README.md b/README.md index 3a520a9..0a94e65 100644 --- a/README.md +++ b/README.md @@ -31,19 +31,19 @@ just like regular applications on Windows, MacOS and Linux. #### Install via automatic setup -1. Download https://github.com/ten0s/velisp/releases/download/0.7.4/velisp-0.7.4-win-x64-setup.zip +1. Download https://github.com/ten0s/velisp/releases/download/0.7.5/velisp-0.7.5-win-x64-setup.zip 2. Open Downloads folder -3. Double-click on velisp-0.7.4-win-x64-setup.zip to open the archive -4. Run velisp-0.7.4-win-x64-setup.exe +3. Double-click on velisp-0.7.5-win-x64-setup.zip to open the archive +4. Run velisp-0.7.5-win-x64-setup.exe 5. Follow the installation wizard. Default options are ok for most users #### Install via binary archive ##### Download and unarchive -1. Download https://github.com/ten0s/velisp/releases/download/0.7.4/velisp-0.7.4-win-x64.zip +1. Download https://github.com/ten0s/velisp/releases/download/0.7.5/velisp-0.7.5-win-x64.zip 2. Open Downloads folder -3. Select velisp-0.7.4-win-x64.zip +3. Select velisp-0.7.5-win-x64.zip 4. Press the right mouse button 5. Click 'Extract All...' 6. Enter C:\ @@ -57,7 +57,7 @@ just like regular applications on Windows, MacOS and Linux. 4. Select 'Path' inside the User variables block 5. Click 'Edit...' 6. Click 'New...' -7. Enter C:\velisp-0.7.4-win-x64 +7. Enter C:\velisp-0.7.5-win-x64 8. Click 'OK' 9. Click 'OK' @@ -70,14 +70,14 @@ If you installed Velisp via [binary archive](#install-via-binary-archive) run the Command Prompt (cmd.exe) and move to the extraction directory: ``` -> cd C:\velisp-0.7.4-win-x64 +> cd C:\velisp-0.7.5-win-x64 ``` #### Run REPL (Read–Eval–Print Loop) ``` > velisp -VeLisp 0.7.4 on Windows +VeLisp 0.7.5 on Windows Type ".license" or ".help" for more information _$ (+ 1 2) 3 @@ -175,7 +175,7 @@ Run the Demo example 2. Files -> Support File Search Path 3. Click Add... 4. Click Browse... -5. Browse for Folder C:\velisp-0.7.4-win-x64\examples +5. Browse for Folder C:\velisp-0.7.5-win-x64\examples 6. Click OK 7. Click Apply 7. Click OK @@ -207,27 +207,27 @@ Instead, start the Terminal application (Finder -> Go -> Utilities -> Terminal) ``` % cd $HOME -% curl -LJO https://github.com/ten0s/velisp/releases/download/0.7.4/velisp-0.7.4-macos-x64.tar.xz -% tar xfJ velisp-0.7.4-macos-x64.tar.xz +% curl -LJO https://github.com/ten0s/velisp/releases/download/0.7.5/velisp-0.7.5-macos-x64.tar.xz +% tar xfJ velisp-0.7.5-macos-x64.tar.xz ``` #### Add to ~/.zshrc ``` -export PATH=/velisp-0.7.4-macos-x64:$PATH +export PATH=/velisp-0.7.5-macos-x64:$PATH ``` ### Usage ``` -% cd velisp-0.7.4-macos-x64 +% cd velisp-0.7.5-macos-x64 ``` #### Run REPL (Read–Eval–Print Loop) ``` % ./velisp -VeLisp 0.7.4 on MacOS +VeLisp 0.7.5 on MacOS Type ".license" or ".help" for more information _$ (+ 1 2) 3 @@ -324,27 +324,27 @@ Run the Demo example #### Download and unarchive ``` -$ curl -LJO https://github.com/ten0s/velisp/releases/download/0.7.4/velisp-0.7.4-linux-x64.tar.xz -$ tar xfJ velisp-0.7.4-linux-x64.tar.xz +$ curl -LJO https://github.com/ten0s/velisp/releases/download/0.7.5/velisp-0.7.5-linux-x64.tar.xz +$ tar xfJ velisp-0.7.5-linux-x64.tar.xz ``` #### Add to ~/.bashrc ``` -export PATH=/velisp-0.7.4-linux-x64:$PATH +export PATH=/velisp-0.7.5-linux-x64:$PATH ``` ### Usage ``` -$ cd velisp-0.7.4-linux-x64 +$ cd velisp-0.7.5-linux-x64 ``` #### Run REPL (Read–Eval–Print Loop) ``` $ ./velisp -VeLisp 0.7.4 on Linux +VeLisp 0.7.5 on Linux Type ".license" or ".help" for more information _$ (+ 1 2) 3 diff --git a/package-lock.json b/package-lock.json index 4df6357..443c4fc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "VeLisp", - "version": "0.7.4", + "version": "0.7.5", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "VeLisp", - "version": "0.7.4", + "version": "0.7.5", "license": "GPL-3.0-or-later", "dependencies": { "antlr4": "4.10.1", diff --git a/package.json b/package.json index ceaba5e..eb377b9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "VeLisp", - "version": "0.7.4", + "version": "0.7.5", "description": "AutoLISP interpreter with DCL support", "main": "src/main.js", "type": "module",