From 27d813fa78cf50c0a3c8d1ff07b134fe138237e3 Mon Sep 17 00:00:00 2001 From: Dmitry Klionsky Date: Tue, 1 Nov 2022 16:37:48 +0300 Subject: [PATCH] Roll 0.7.2 --- README.md | 28 ++++++++++++++-------------- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 367353e..104aa59 100644 --- a/README.md +++ b/README.md @@ -31,18 +31,18 @@ just like regular applications on Windows, Linux and MacOS. #### Install via automatic setup -1. Download https://github.com/ten0s/velisp/releases/download/0.7.1/velisp-0.7.1-win-x64-setup.exe.zip -2. Rename velisp-0.7.1-win-x64-setup.exe.zip to velisp-0.7.1-win-x64-setup.exe -3. Run velisp-0.7.1-win-x64-setup.exe +1. Download https://github.com/ten0s/velisp/releases/download/0.7.2/velisp-0.7.2-win-x64-setup.exe.zip +2. Rename velisp-0.7.2-win-x64-setup.exe.zip to velisp-0.7.2-win-x64-setup.exe +3. Run velisp-0.7.2-win-x64-setup.exe 4. 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.1/velisp-0.7.1-win-x64.zip +1. Download https://github.com/ten0s/velisp/releases/download/0.7.2/velisp-0.7.2-win-x64.zip 2. Open Downloads folder -3. Select velisp-0.7.1-win-x64.zip +3. Select velisp-0.7.2-win-x64.zip 4. Press the right mouse button 5. Click 'Extract All...' 6. Enter C:\ @@ -56,7 +56,7 @@ just like regular applications on Windows, Linux and MacOS. 4. Select 'Path' inside the User variables block 5. Click 'Edit...' 6. Click 'New...' -7. Enter C:\velisp-0.7.1-win-x64 +7. Enter C:\velisp-0.7.2-win-x64 8. Click 'OK' 9. Click 'OK' @@ -69,14 +69,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.1-win-x64 +> cd C:\velisp-0.7.2-win-x64 ``` #### Run REPL (Read–Eval–Print Loop) ``` > velisp -VeLisp 0.7.1 on Windows +VeLisp 0.7.2 on Windows Type ".license" or ".help" for more information _$ (+ 1 2) 3 @@ -174,7 +174,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.1-win-x64\examples +5. Browse for Folder C:\velisp-0.7.2-win-x64\examples 6. Click OK 7. Click Apply 7. Click OK @@ -198,27 +198,27 @@ _$ (load "demo") #### Download and unarchive ``` -$ wget https://github.com/ten0s/velisp/releases/download/0.7.1/velisp-0.7.1-linux-x64.tar.gz -$ tar xfz velisp-0.7.1-linux-x64.tar.gz +$ wget https://github.com/ten0s/velisp/releases/download/0.7.2/velisp-0.7.2-linux-x64.tar.gz +$ tar xfz velisp-0.7.2-linux-x64.tar.gz ``` #### Add to ~/.bashrc ``` -export PATH=/velisp-0.7.1-linux-x64:$PATH +export PATH=/velisp-0.7.2-linux-x64:$PATH ``` ### Usage ``` -$ cd velisp-0.7.1-linux-x64 +$ cd velisp-0.7.2-linux-x64 ``` #### Run REPL (Read–Eval–Print Loop) ``` $ velisp -VeLisp 0.7.1 on Linux +VeLisp 0.7.2 on Linux Type ".license" or ".help" for more information _$ (+ 1 2) 3 diff --git a/package-lock.json b/package-lock.json index 78a8737..dfdd04f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "VeLisp", - "version": "0.7.1", + "version": "0.7.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "VeLisp", - "version": "0.7.1", + "version": "0.7.2", "license": "GPL-3.0-or-later", "dependencies": { "antlr4": "4.10.1", diff --git a/package.json b/package.json index 7f944d1..6521acb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "VeLisp", - "version": "0.7.1", + "version": "0.7.2", "description": "AutoLISP interpreter with DCL support", "main": "src/main.js", "type": "module",