diff options
author | Kai Huuhko <kai.huuhko@gmail.com> | 2014-05-31 12:07:00 +0300 |
---|---|---|
committer | Kai Huuhko <kai.huuhko@gmail.com> | 2014-05-31 12:07:00 +0300 |
commit | fcbba66f25161681e7f851a4151ee3ef09b69ca4 (patch) | |
tree | 34737becea4acef9b1165e4349c7cbb894b2cb79 | |
parent | 6115bcd0ab090a6a271542d68086596f0d2e19b9 (diff) |
Bump versions for 1.11 development
-rw-r--r-- | CODING | 17 | ||||
-rw-r--r-- | README.rst | 6 | ||||
-rwxr-xr-x | setup.py | 8 |
3 files changed, 16 insertions, 15 deletions
@@ -44,17 +44,19 @@ Tips | |||
44 | Release process instructions | 44 | Release process instructions |
45 | ============================ | 45 | ============================ |
46 | 46 | ||
47 | * Announce at release@lists.enlightenment.org that you are planning for the | 47 | * Announce at enlightenment-release@lists.sourceforge.net that you are planning |
48 | release | 48 | for the release |
49 | * Change versions in the top part of setup.py (ex: 1.9 and 1.9.0) | 49 | * Change versions in the top part of setup.py (ex: 1.9 and 1.9.0) |
50 | * Raise efl/elm min requirements | ||
51 | * Update README.rst | ||
50 | * Update the changes.html file | 52 | * Update the changes.html file |
51 | setup.py build_doc -b changes ...and manually merge | 53 | setup.py build_doc -b changes ...and manually merge |
52 | * Git push and wait jenkins to generate the 2 tarballs | 54 | * Git push and wait jenkins to generate the 2 tarballs |
53 | * Test the generated tarballs | 55 | * Test the generated tarballs |
54 | * scp tarballs to | 56 | * scp tarballs to |
55 | download.enlightenment.org/srv/web/download.enlightenment.org/public_html/pre-releases | 57 | download.enlightenment.org/srv/web/download.enlightenment.org/public_html/pre-releases |
56 | * Announce at release@lists.enlightenment.org that tarballs are ready for | 58 | * Announce at enlightenment-release@lists.sourceforge.net that tarballs are |
57 | testing | 59 | ready for testing |
58 | 60 | ||
59 | ... wait 24 hours, fix any issues found. In the mean time you can prepare the | 61 | ... wait 24 hours, fix any issues found. In the mean time you can prepare the |
60 | release announcement for phame/ml. | 62 | release announcement for phame/ml. |
@@ -66,10 +68,9 @@ Release process instructions | |||
66 | * Create and push the branch for stable backporting | 68 | * Create and push the branch for stable backporting |
67 | git branch python-efl-1.9 && git push origin python-efl-1.9 | 69 | git branch python-efl-1.9 && git push origin python-efl-1.9 |
68 | * Publish the blog post on phame (Official Announcements) | 70 | * Publish the blog post on phame (Official Announcements) |
69 | * Announce the release to announce@lists.enlightenment.org with cc to devel | 71 | * Announce the release to release@lists.enlightenment.org |
70 | etc. | 72 | (an alias for e-announce etc.) |
71 | * Update download link on website (clone website/www.git, edit, and use the | 73 | * Update download link on website (clone website/www.git, edit, commit, push) |
72 | update link found in the url below) | ||
73 | * Change versions again in setup.py (ex: 1.10 and 1.9.99) | 74 | * Change versions again in setup.py (ex: 1.10 and 1.9.99) |
74 | * Raise efl and elementary requirements in setup.py (to 1.9.99) | 75 | * Raise efl and elementary requirements in setup.py (to 1.9.99) |
75 | 76 | ||
@@ -1,6 +1,6 @@ | |||
1 | ################# | 1 | ################## |
2 | PYTHON-EFL 1.10.0 | 2 | PYTHON-EFL 1.10.99 |
3 | ################# | 3 | ################## |
4 | 4 | ||
5 | EFL is a collection of libraries for handling many common tasks a | 5 | EFL is a collection of libraries for handling many common tasks a |
6 | developer man have such as data structures, communication, rendering, | 6 | developer man have such as data structures, communication, rendering, |
@@ -12,8 +12,8 @@ script_path = os.path.dirname(os.path.abspath(__file__)) | |||
12 | 12 | ||
13 | 13 | ||
14 | # python-efl version | 14 | # python-efl version |
15 | VERSION = "1.10" | 15 | VERSION = "1.11" |
16 | RELEASE = "1.10.0" | 16 | RELEASE = "1.10.99" |
17 | 17 | ||
18 | # Add git commit count for dev builds | 18 | # Add git commit count for dev builds |
19 | if RELEASE.split(".")[2] == "99": | 19 | if RELEASE.split(".")[2] == "99": |
@@ -27,8 +27,8 @@ if RELEASE.split(".")[2] == "99": | |||
27 | 27 | ||
28 | # dependencies | 28 | # dependencies |
29 | CYTHON_MIN_VERSION = "0.19" | 29 | CYTHON_MIN_VERSION = "0.19" |
30 | EFL_MIN_VERSION = "1.10.0" | 30 | EFL_MIN_VERSION = "1.10.99" |
31 | ELM_MIN_VERSION = "1.10.0" | 31 | ELM_MIN_VERSION = "1.10.99" |
32 | 32 | ||
33 | 33 | ||
34 | # XXX: Force default visibility. See phab T504 | 34 | # XXX: Force default visibility. See phab T504 |