From 591296881d4812a941e484ac1d336074b5869e1a Mon Sep 17 00:00:00 2001 From: "un.def" Date: Tue, 24 Jul 2018 21:24:01 +0300 Subject: [PATCH] Bump version --- README.rst | 21 +++++++++++++-------- luamb.py | 2 +- luamb.sh | 2 +- 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/README.rst b/README.rst index fd7e63c..0bd674c 100644 --- a/README.rst +++ b/README.rst @@ -33,16 +33,12 @@ Installation # path to directory with environments export LUAMB_DIR=$HOME/.luambenvs - .. code:: shell - # optional variables: export LUAMB_LUA_DEFAULT=lua5.3 # default Lua version export LUAMB_LUAROCKS_DEFAULT=latest # default LuaRocks version - LUAMB_COMPLETION=true # enable Bash completion + LUAMB_COMPLETION=true # enable shell completion LUAMB_PYTHON_BIN=/usr/bin/python3 # explicitly set Python executable - .. code:: shell - # make some magic source "$(which luamb.sh)" # or absolute path like /usr/local/bin/luamb.sh @@ -114,19 +110,28 @@ Commands Each command has one or more alias. -``on`` \| ``enable`` — activate existing environment +``on`` \| ``enable`` \| ``activate`` — activate environment -``off`` \| ``disable`` — deactivate current environment +``off`` \| ``disable`` \| ``deactivate`` — deactivate current environment ``mk`` \| ``new`` \| ``create`` — create new environment -``rm`` \| ``remove`` \| ``del`` — delete existing environment +``rm`` \| ``remove`` \| ``del`` \| ``delete`` — remove environment + +``info`` \| ``show`` — show environment info ``ls`` \| ``list`` — list all environments Version history ~~~~~~~~~~~~~~~ +- 0.3.0 (2018-07-24) + + - Add git URIs and local paths support + - Add hererocks non-zero status handling + - Wrap hererocks deactivate-lua function to deactivate environment properly + - Add some new aliases + - 0.2.1 (2018-03-25) - Bugfix release diff --git a/luamb.py b/luamb.py index 9833d6c..5e66c17 100644 --- a/luamb.py +++ b/luamb.py @@ -16,7 +16,7 @@ __author__ = 'un.def ' -__version__ = '0.2.1' +__version__ = '0.3.0' def error(msg, exit_status=1): diff --git a/luamb.sh b/luamb.sh index cf90d89..b6a15d1 100644 --- a/luamb.sh +++ b/luamb.sh @@ -1,5 +1,5 @@ # author : un.def -# version : 0.2.1 +# version : 0.3.0 # shellcheck shell=bash