Commit fb9159ca authored by Kevin Modzelewski's avatar Kevin Modzelewski

Update for v0.3 release

parent acd11197
...@@ -37,8 +37,13 @@ We have a [small list of starter projects](https://github.com/dropbox/pyston/wik ...@@ -37,8 +37,13 @@ We have a [small list of starter projects](https://github.com/dropbox/pyston/wik
- Multithreading support - Multithreading support
- We have allowed performance to regress, sometimes considerably, but (hopefully) in places that allow for more efficient implementations as we have time. - We have allowed performance to regress, sometimes considerably, but (hopefully) in places that allow for more efficient implementations as we have time.
##### v0.3: current series ##### v0.3: [released 2/24/2015](http://blog.pyston.org/2015/02/24/pyston-0-3-self-hosting-sufficiency/)
- Goal is to improve performance, informed by our behavior on real benchmarks. - Better language support
- Can self-host all of our internal Python scripts
- Better performance
- Match CPython's performance on our small benchmark suite
##### v0.4: Coming soon
### Getting started ### Getting started
......
...@@ -19,7 +19,7 @@ namespace pyston { ...@@ -19,7 +19,7 @@ namespace pyston {
int GLOBAL_VERBOSITY = 0; int GLOBAL_VERBOSITY = 0;
int PYSTON_VERSION_MAJOR = 0; int PYSTON_VERSION_MAJOR = 0;
int PYSTON_VERSION_MINOR = 2; int PYSTON_VERSION_MINOR = 3;
int PYTHON_VERSION_MAJOR = DEFAULT_PYTHON_MAJOR_VERSION; int PYTHON_VERSION_MAJOR = DEFAULT_PYTHON_MAJOR_VERSION;
int PYTHON_VERSION_MINOR = DEFAULT_PYTHON_MINOR_VERSION; int PYTHON_VERSION_MINOR = DEFAULT_PYTHON_MINOR_VERSION;
......
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