kuuko pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=73e63ec7e3de2089a80bf894c2ec12c93b3baafe
commit 73e63ec7e3de2089a80bf894c2ec12c93b3baafe Author: Kai Huuhko <kai.huu...@gmail.com> Date: Sat Apr 5 06:35:32 2014 +0300 Update information in README etc. and bump the series in setup.py We're at series 1.10 development, that goes in VERSION, with no releases in this series out yet, denoted by 1.9.99 in RELEASE --- CODING | 25 +++++++++++++++++++------ INSTALL | 4 ++-- README | 9 ++++++++- TODO | 4 ++-- setup.py | 2 +- 5 files changed, 32 insertions(+), 12 deletions(-) diff --git a/CODING b/CODING index 7cf4ea8..87ea7ed 100644 --- a/CODING +++ b/CODING @@ -44,20 +44,33 @@ Tips Release process instructions ============================ +* Announce at rele...@lists.enlightenment.org that you are planning for the + release * Change versions in the top part of setup.py (ex: 1.9 and 1.9.0) * Update the changes.html file setup.py build_doc -b changes ...and manually merge * Git push and wait jenkins to generate the 2 tarballs -* Test the generated tarball -* Put the tarballs on download.e.org/rel/bindings/python +* Test the generated tarballs +* scp tarballs to + download.enlightenment.org/srv/web/download.enlightenment.org/public_html/pre-releases +* Announce at rele...@lists.enlightenment.org that tarballs are ready for + testing + +... wait 24 hours, fix any issues found. In the mean time you can prepare the + release announcement for phame/ml. + +* ssh to dl.e.org and mv the tarballs to + /srv/web/download.enlightenment.org/rel/bindings/python * Create and push the tag for the release git tag -a v1.9.0 && git push origin v1.9.0 * Create and push the branch for stable backporting git branch python-efl-1.9 && git push origin python-efl-1.9 -* Write the blog post on phame (Official Announcements) -* Annouce the release to rele...@lists.enlightenment.org -* Update download link on website -* Change versions again in setup.py (ex: 1.9 and 1.9.99) +* Publish the blog post on phame (Official Announcements) +* Announce the release to annou...@lists.enlightenment.org with cc to devel + etc. +* Update download link on website (clone website/www.git, edit, and use the + update link found in the url below) +* Change versions again in setup.py (ex: 1.10 and 1.9.99) * Raise efl and elementary requirements in setup.py (to 1.9.99) more info at: diff --git a/INSTALL b/INSTALL index 7e475e6..c486c16 100644 --- a/INSTALL +++ b/INSTALL @@ -5,8 +5,8 @@ * Python 2.6 or higher (http://www.python.org/) - Tested with Python 2.6 / 2.7 / 3.2 / 3.3 - * Cython 0.17.0 or higher (http://cython.org/) - - Tested with Cython 0.17.1 + * Cython 0.19 or higher (http://cython.org/) + - Tested with Cython 0.19.1 * EFL core library - eo, evas, ecore, edje, emotion and elementary diff --git a/README b/README index 56b8ce4..1382739 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ ----------------- -PYTHON-EFL 1.8.99 +PYTHON-EFL 1.9.99 ----------------- EFL is a collection of libraries for handling many common tasks a @@ -13,6 +13,13 @@ INSTALL For installation instruction see the INSTALL file. +CHANGES FROM 1.9 to 1.10 +======================= + +Deprecated in 1.10 +----------------- + + CHANGES FROM 1.8 to 1.9 ======================= diff --git a/TODO b/TODO index c1dfb72..668f3da 100644 --- a/TODO +++ b/TODO @@ -17,8 +17,8 @@ Failing unit tests * tests.edje.test_04_edit: testGroupDel (skipped, segfault) * tests.edje.test_04_edit: testExternal (skipped, TODO) -TODO (after 1.8) -================ +TODO +==== * update links and text on: http://www.freedesktop.org/wiki/Software/DBusBindings (requires fd.org shell account?) diff --git a/setup.py b/setup.py index 345a3bf..381942f 100755 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ script_path = os.path.dirname(os.path.abspath(__file__)) # python-efl version -VERSION = "1.9" +VERSION = "1.10" RELEASE = "1.9.99" --