Commit fc7e22ea authored by Marius Wachtler's avatar Marius Wachtler

Bump version numbers

parent abb4b132
......@@ -399,8 +399,8 @@ set(CMAKE_EXECUTABLE_FORMAT "ELF") # Otherwise cmake thinks this is a cross-comp
install(TARGETS pyston DESTINATION ".")
set(CPACK_PACKAGE_VERSION_MAJOR "0")
set(CPACK_PACKAGE_VERSION_MINOR "5")
set(CPACK_PACKAGE_VERSION_PATCH "1")
set(CPACK_PACKAGE_VERSION_MINOR "6")
set(CPACK_PACKAGE_VERSION_PATCH "0")
set(CPACK_SYSTEM_NAME "linux64")
......
......@@ -35,7 +35,7 @@ docker run -it pyston/pyston-numpy
To install it yourself, one needs a modified Cython, as well as to install numpy from source in order to invoke our modified Cython.
```
pip install https://github.com/dropbox/pyston/releases/download/v0.5.1/Cython-0.24.0-pyston.tar.gz
pip install https://github.com/dropbox/pyston/releases/download/v0.5.1/Cython-0.24-pyston.tar.gz
pip install git+git://github.com/numpy/numpy@v1.11.0
```
......
......@@ -6,8 +6,8 @@ FROM buildpack-deps:jessie
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
ENV PYSTON_TAG v0.5.1
ENV PYSTON_VERSION 0.5.1
ENV PYSTON_TAG v0.6.0
ENV PYSTON_VERSION 0.6.0
RUN set -x \
&& curl -SL "https://github.com/dropbox/pyston/releases/download/${PYSTON_TAG}/pyston-${PYSTON_VERSION}-linux64.tar.gz" | tar -xzC / \
......
......@@ -6,8 +6,8 @@ FROM buildpack-deps:jessie
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
ENV PYSTON_TAG v0.5.1
ENV PYSTON_VERSION 0.5.1
ENV PYSTON_TAG v0.6.0
ENV PYSTON_VERSION 0.6.0
RUN set -x \
&& curl -SL "https://github.com/dropbox/pyston/releases/download/${PYSTON_TAG}/pyston-${PYSTON_VERSION}-linux64.tar.gz" | tar -xzC / \
......
......@@ -19,8 +19,8 @@ namespace pyston {
int GLOBAL_VERBOSITY = 0;
int PYSTON_VERSION_MAJOR = 0;
int PYSTON_VERSION_MINOR = 5;
int PYSTON_VERSION_MICRO = 1;
int PYSTON_VERSION_MINOR = 6;
int PYSTON_VERSION_MICRO = 0;
int MAX_OPT_ITERATIONS = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment