From 081f713bf7e1cde3a1c961510deee5af4d43799e Mon Sep 17 00:00:00 2001 From: mpeterv Date: Sat, 19 Dec 2015 16:35:56 +0300 Subject: [PATCH] 0.3.0 release --- README.rst | 8 ++++---- hererocks.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 47e536d..7b1bf0a 100644 --- a/README.rst +++ b/README.rst @@ -11,7 +11,7 @@ Installation Using `pip `_: run ``pip install hererocks``, using ``sudo`` if necessary. -Manually: download hererocks with ``wget https://raw.githubusercontent.com/mpeterv/hererocks/0.2.0/hererocks.py``, then use ``python hererocks.py ...`` to run it. +Manually: download hererocks with ``wget https://raw.githubusercontent.com/mpeterv/hererocks/0.3.0/hererocks.py``, then use ``python hererocks.py ...`` to run it. Usage ----- @@ -37,7 +37,7 @@ Version selection Compatibility flags ^^^^^^^^^^^^^^^^^^^ -Lua and LuaJIT have some flags that add compatibility with other Lua versions. Lua 5.2 has 5.1 compatibility flag (on by default), Lua 5.3 - both 5.1 and 5.2 compatibility flags (only 5.2 compatibility is on by default), and LuaJIT has 5.2 flag (off by default). ``hererocks`` can change these flags before building when using ``--compat`` option. Possible arguments are ``default``, ``none``, ``all``, ``5.1`` and ``5.2``. +Lua and LuaJIT have some flags that add compatibility with other Lua versions. Lua 5.1 has several options for compatibility with Lua 5.0 (on by default), Lua 5.2 has 5.1 compatibility flag (on by default), Lua 5.3 - both 5.1 and 5.2 compatibility flags (only 5.2 compatibility is on by default), and LuaJIT has 5.2 flag (off by default). ``hererocks`` can change these flags before building when using ``--compat`` option. Possible arguments are ``default``, ``none``, ``all``, ``5.1`` and ``5.2``. Installing standard PUC-Rio Lua ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -56,9 +56,9 @@ Available versions: 2.0.0 - 2.0.4, 2.1 (installs from ``v2.1`` branch of the Lua Installing LuaRocks ^^^^^^^^^^^^^^^^^^^ -Available versions: 2.1.0 - 2.1.2, 2.2.0 - 2.2.2, 3 (installs from ``luarocks-3`` branch of the LuaRocks git repository). +Available versions: 2.0.8 - 2.0.12, 2.1.0 - 2.1.2, 2.2.0 - 2.2.2, 3 (installs from ``luarocks-3`` branch of the LuaRocks git repository). -Versions 2.1.0 - 2.1.2 do not support Lua 5.3. +Version 2.0.8 does not suppoer Lua 5.2. Versions 2.1.0 - 2.1.2 do not support Lua 5.3. Using hererocks to set up automated testing ------------------------------------------- diff --git a/hererocks.py b/hererocks.py index 1bf3362..42f08fd 100755 --- a/hererocks.py +++ b/hererocks.py @@ -20,7 +20,7 @@ try: except ImportError: from urllib.request import urlretrieve -hererocks_version = "Hererocks 0.2.0" +hererocks_version = "Hererocks 0.3.0" __all__ = ["main"] opts = None diff --git a/setup.py b/setup.py index 8a9fffa..71efe49 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ readme.close() setuptools.setup( name="hererocks", - version="0.2.0", + version="0.3.0", description="Tool for installing Lua and LuaRocks locally", long_description=long_description, keywords="lua",