diff --git a/README.md b/README.md index caa34ffce..b56f9959f 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ We have a [small list of starter projects](https://github.com/dropbox/pyston/wik - Focus was on building and validating the core Python-to-LLVM JIT infrastructure. - Many core parts of the language were missing. -##### v0.2: [released 9/11/2014](http://blog.pyston.org/) +##### v0.2: [released 9/11/2014](http://blog.pyston.org/2014/09/11/9/) - Focus was on improving language compatibility to the point that we can start running "real code" in the form of existing benchmarks. - Many new features: - Exceptions diff --git a/src/jit.cpp b/src/jit.cpp index 011a4990d..de71e4cd5 100644 --- a/src/jit.cpp +++ b/src/jit.cpp @@ -193,7 +193,7 @@ int main(int argc, char** argv) { } if (repl) { - printf("Pyston v0.1 (rev " STRINGIFY(GITREV) ")"); + printf("Pyston v0.2 (rev " STRINGIFY(GITREV) ")"); printf(", targeting Python %d.%d.%d\n", PYTHON_VERSION_MAJOR, PYTHON_VERSION_MINOR, PYTHON_VERSION_MICRO); if (!main_module) {