Skip to content

Commit 8afe784

Browse files
committed
0.12.0 release
1 parent e89c557 commit 8afe784

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Version selection
8484
``--lua/-l``, ``--luajit/-j`` and ``--luarocks/-r`` options select versions of programs to install. There are three ways to specify how to fetch the sources:
8585

8686
* 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``. ``latest`` or ``^`` 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.
87-
* 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.
87+
* 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/luarocks/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.
8888
* Using path to a local directory.
8989

9090
Compatibility flags
@@ -109,7 +109,7 @@ Available versions: 2.0.0 - 2.0.4, 2.1.0-beta1 - 2.1.0-beta2.
109109
Installing LuaRocks
110110
^^^^^^^^^^^^^^^^^^^
111111

112-
Available versions: 2.0.8 - 2.0.13, 2.1.0 - 2.1.2, 2.2.0 - 2.2.2, 2.3.0, 2.4.0, 3 (installs from ``luarocks-3`` branch of the LuaRocks git repository).
112+
Available versions: 2.0.8 - 2.0.13, 2.1.0 - 2.1.2, 2.2.0 - 2.2.2, 2.3.0, 2.4.0 - 2.4.1, 3 (installs from ``luarocks-3`` branch of the LuaRocks git repository).
113113

114114
Version 2.0.8 does not support Lua 5.2. Versions 2.0.8 - 2.1.2 do not support Lua 5.3.
115115

hererocks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
except ImportError:
3232
import winreg
3333

34-
hererocks_version = "Hererocks 0.11.0"
34+
hererocks_version = "Hererocks 0.12.0"
3535
__all__ = ["main"]
3636

3737
opts = None

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setuptools.setup(
1111
name="hererocks",
12-
version="0.11.0",
12+
version="0.12.0",
1313
description="Tool for installing Lua and LuaRocks locally",
1414
long_description=long_description,
1515
keywords="lua",

0 commit comments

Comments
 (0)