From 54e7be35ee68719e7785d22854e29be5b373940e Mon Sep 17 00:00:00 2001 From: Abhik Pal Date: Tue, 14 Aug 2018 02:48:09 +0530 Subject: [PATCH] change version number + add GSOC info in release notes. --- docs/releasenotes/0.5.0.rst | 20 ++++++++++++++------ p5/__version__.py | 2 +- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/docs/releasenotes/0.5.0.rst b/docs/releasenotes/0.5.0.rst index 3a95249e..50704836 100644 --- a/docs/releasenotes/0.5.0.rst +++ b/docs/releasenotes/0.5.0.rst @@ -6,13 +6,21 @@ p5 version 0.5.0 is the final release for the `Google Summer of Code `_ `by `Abhik Pal `_. The project was supervised by `Manindra Mohrarna `_ of the -`Processing Foundation `_. This -release builds on a release from earlier this summer that moved the -internal windowing framework and OpenGL interface to vispy. +`Processing Foundation `_. The goal +of the project were: -In addition to the new features described in the next section, the -documentation accompanying this release also includes ports of some -Processing tutorials: +#. Move the internal windowing and OpenGL framework to `vispy + `_ +#. Fix the then open issues and merge pull requests +#. Add support for user defined polygons +#. Add image support + +We met all of these goals completely. The first two were covered by a +`release from earlier in the summer +`_. These +release notes summarize our later two goals. In addition to the stated +goals we were also able to add minimal typography support and port +some tutorials from Processing to p5: * :doc:`Color by Daniel Shiffman ` * :doc:`Vectors by Daniel Shiffman ` diff --git a/p5/__version__.py b/p5/__version__.py index d49c5404..7cdd9d89 100644 --- a/p5/__version__.py +++ b/p5/__version__.py @@ -19,7 +19,7 @@ __title__ = 'p5' __description__ = 'Creative coding in Python' __url__ = 'https://p5py.github.io' -__version__ = '0.4.0a1.dev2' +__version__ = '0.5.0' __author__ = 'Abhik Pal' __author_email__ = 'theabhikpal@gmail.com' __license__ = ' GNU GPLv3'