Skip to content
Snippets Groups Projects
Commit b3375f95 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Bump version

parent 0e9ad9b7
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,15 @@ Version 2016.2 ...@@ -34,6 +34,15 @@ Version 2016.2
This version is currently under development. You can get snapshots from This version is currently under development. You can get snapshots from
loopy's `git repository <https://github.com/inducer/loopy>`_ loopy's `git repository <https://github.com/inducer/loopy>`_
Version 2016.1.1
----------------
* Add :func:`loopy.chunk_iname`.
* Add ``unused:l``, ``unused:g``, and ``like:INAME`` iname tag notation
* Release automatically built, self-contained Linux binary
* Many fixes and improvements
* Docs improvements
Version 2016.1 Version 2016.1
-------------- --------------
......
...@@ -21,7 +21,7 @@ THE SOFTWARE. ...@@ -21,7 +21,7 @@ THE SOFTWARE.
""" """
VERSION = (2016, 1) VERSION = (2016, 1, 1)
VERSION_STATUS = "" VERSION_STATUS = ""
VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS VERSION_TEXT = ".".join(str(x) for x in VERSION) + VERSION_STATUS
......
...@@ -38,7 +38,7 @@ setup(name="loo.py", ...@@ -38,7 +38,7 @@ setup(name="loo.py",
install_requires=[ install_requires=[
"pytools>=2016.1", "pytools>=2016.1",
"pymbolic>=2016.1.1", "pymbolic>=2016.2",
"cgen>=2016.1", "cgen>=2016.1",
"islpy>=2016.1", "islpy>=2016.1",
"six>=1.8.0", "six>=1.8.0",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment