From 98f1426656e9b9ba676c90711eaf71159e5e66ee Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sun, 20 Mar 2016 23:34:26 +0300 Subject: [PATCH] 0.6.0 release --- README.rst | 6 +++--- hererocks.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index 19af636..6fcd783 100644 --- a/README.rst +++ b/README.rst @@ -30,7 +30,7 @@ Version selection ``--lua/-l``, ``--luajit/-j`` and ``--luarocks/-r`` options should be used to select versions of programs to install. There are three ways to specify how to fetch the sources: -* Using version number, such as ``5.1.5``. If patch or minor versions are left out the latest possible version will be used, e.g. for Lua ``5.2`` is currently equivalent to ``5.2.4``. ``^`` can be used to select the latest stable version. ``hererocks`` will fetch and unpack sources of the selected version from corresponding official downloads location. +* Using version number, such as ``5.1.5``. If patch or minor versions are left out the latest possible version will be used, e.g. for Lua ``5.2`` is currently equivalent to ``5.2.4`` and for LuaJIT ``2.1`` is same as ``2.1.0-beta2``. ``^`` can be used to select the latest stable version. ``hererocks`` will fetch and unpack sources of the selected version from corresponding downloads location, verifying their SHA256 checksum. * Using git URI plus reference to checkout, separated by ``@``. Default reference is ``master``, and there are default git URIs for Lua (https://github.com/lua/lua), LuaJIT (https://github.com/luajit/luajit) and LuaRocks (https://github.com/keplerproject/luarocks). For instance, ``--luajit @458a40b`` installs from a commit at the LuaJIT git repository and ``--luajit @`` installs from its master branch. ``hererocks`` will use ``git`` command for cloning. * Using path to a local directory. @@ -46,12 +46,12 @@ Available versions: 5.1 - 5.1.5, 5.2.0 - 5.2.4, 5.3.0 - 5.3.2. Use ``5.1.0`` to install Lua ``5.1`` which was released without patch version for some reason. -When building Lua, ``hererocks`` tries to use sensible ``make`` target. The default can be seen in the help message printed by ``hererocks --help``. To select another target, use ``--target`` option. +When building Lua, ``hererocks`` tries to emulate a sensible ``make`` target. The default can be seen in the help message printed by ``hererocks --help``. To select another target use ``--target`` option. To build without readline library use ``--no-readline`` option. Installing LuaJIT ^^^^^^^^^^^^^^^^^ -Available versions: 2.0.0 - 2.0.4, 2.1 (installs from ``v2.1`` branch of the LuaJIT git repository). +Available versions: 2.0.0 - 2.0.4, 2.1.0-beta1 - 2.1.0-beta2. Installing LuaRocks ^^^^^^^^^^^^^^^^^^^ diff --git a/hererocks.py b/hererocks.py index b17a51c..87e3a50 100755 --- a/hererocks.py +++ b/hererocks.py @@ -21,7 +21,7 @@ except ImportError: from urllib.request import urlretrieve -hererocks_version = "Hererocks 0.5.0" +hererocks_version = "Hererocks 0.6.0" __all__ = ["main"] opts = None diff --git a/setup.py b/setup.py index 096e46b..89a1a57 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setuptools.setup( name="hererocks", - version="0.5.0", + version="0.6.0", description="Tool for installing Lua and LuaRocks locally", long_description=long_description, keywords="lua",