Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
un-def committed Jul 24, 2018
1 parent 2805492 commit 5912968
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
21 changes: 13 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion luamb.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


__author__ = 'un.def <[email protected]>'
__version__ = '0.2.1'
__version__ = '0.3.0'


def error(msg, exit_status=1):
Expand Down
2 changes: 1 addition & 1 deletion luamb.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# author : un.def <[email protected]>
# version : 0.2.1
# version : 0.3.0

# shellcheck shell=bash

Expand Down

0 comments on commit 5912968

Please sign in to comment.