Skip to content

Commit 381e102

Browse files
authored
Merge pull request #1420 from undingen/release_v061
change version numbers to 0.6.1
2 parents 79509a1 + b22b9a7 commit 381e102

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

Diff for: CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -392,8 +392,8 @@ set(CMAKE_EXECUTABLE_FORMAT "ELF") # Otherwise cmake thinks this is a cross-comp
392392
install(TARGETS pyston DESTINATION ".")
393393

394394
set(CPACK_PACKAGE_VERSION_MAJOR "0")
395-
set(CPACK_PACKAGE_VERSION_MINOR "7")
396-
set(CPACK_PACKAGE_VERSION_PATCH "0")
395+
set(CPACK_PACKAGE_VERSION_MINOR "6")
396+
set(CPACK_PACKAGE_VERSION_PATCH "1")
397397

398398
set(CPACK_SYSTEM_NAME "linux64")
399399

Diff for: README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ docker run -it pyston/pyston-numpy
3535
To install it yourself, one needs a modified Cython, as well as to install numpy from source in order to invoke our modified Cython.
3636

3737
```
38-
pip install https://github.com/dropbox/pyston/releases/download/v0.6/Cython-0.24-pyston.tar.gz
38+
pip install https://github.com/dropbox/pyston/releases/download/v0.6.1/Cython-0.24-pyston.tar.gz
3939
pip install git+git://github.com/numpy/[email protected]
4040
```
4141

@@ -53,6 +53,10 @@ See [travis-ci.org/dropbox/pyston/builds](https://travis-ci.org/dropbox/pyston/b
5353

5454
##### v0.7: coming soon
5555

56+
##### v0.6.1: [released 1/31/2017](https://blog.pyston.org/2017/01/31/pyston-0-6-1-released-and-future-plans/)
57+
- smaller performance optimizations and bug fixes
58+
- updated CPython runtime to 2.7.8
59+
5660
##### v0.6: [released 11/21/2016](https://blog.pyston.org/2016/11/11/pyston-0-6-released/)
5761
- focused on reducing the memory usage with the result that the peak memory usage on various benchmarks nearly halved.
5862
- new bytecode

Diff for: docker/pyston-numpy/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ FROM buildpack-deps:jessie
66
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
77
ENV LANG C.UTF-8
88

9-
ENV PYSTON_TAG v0.7.0
10-
ENV PYSTON_VERSION 0.7.0
9+
ENV PYSTON_TAG v0.6.1
10+
ENV PYSTON_VERSION 0.6.1
1111

1212
RUN set -x \
1313
&& curl -SL "https://github.com/dropbox/pyston/releases/download/${PYSTON_TAG}/pyston-${PYSTON_VERSION}-linux64.tar.gz" | tar -xzC / \

Diff for: docker/pyston/Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ FROM buildpack-deps:jessie
66
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
77
ENV LANG C.UTF-8
88

9-
ENV PYSTON_TAG v0.7.0
10-
ENV PYSTON_VERSION 0.7.0
9+
ENV PYSTON_TAG v0.6.1
10+
ENV PYSTON_VERSION 0.6.1
1111

1212
RUN set -x \
1313
&& curl -SL "https://github.com/dropbox/pyston/releases/download/${PYSTON_TAG}/pyston-${PYSTON_VERSION}-linux64.tar.gz" | tar -xzC / \

Diff for: from_cpython/Include/Python.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
// Cython depends on having this define set:
1919
#define Py_PYTHON_H
2020

21-
#define PYSTON_VERSION "0.7"
21+
#define PYSTON_VERSION "0.6.1"
2222

2323
#define WITH_PYMALLOC
2424

Diff for: src/core/options.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ namespace pyston {
1919
int GLOBAL_VERBOSITY = 0;
2020

2121
int PYSTON_VERSION_MAJOR = 0;
22-
int PYSTON_VERSION_MINOR = 7;
23-
int PYSTON_VERSION_MICRO = 0;
22+
int PYSTON_VERSION_MINOR = 6;
23+
int PYSTON_VERSION_MICRO = 1;
2424

2525
int MAX_OPT_ITERATIONS = 1;
2626

0 commit comments

Comments
 (0)