[Checkins] SVN: grok/trunk/ Prepare for release.

Martijn Faassen faassen at infrae.com
Tue Aug 21 13:52:03 EDT 2007


Log message for revision 79089:
  Prepare for release.
  

Changed:
  A   grok/trunk/CHANGES.txt
  U   grok/trunk/README.txt
  U   grok/trunk/setup.py

-=-
Added: grok/trunk/CHANGES.txt
===================================================================
--- grok/trunk/CHANGES.txt	                        (rev 0)
+++ grok/trunk/CHANGES.txt	2007-08-21 17:52:03 UTC (rev 79089)
@@ -0,0 +1,40 @@
+Grok changes
+************
+
+0.10 (2007-08-21)
+=================
+
+Feature changes
+---------------
+
+* Integrated admin user interface.
+
+* Martian-based configuration.
+
+* Grok should now work on Windows.
+
+* Grok is now based on zope3recipes.
+
+* Flash message infrastructure included.
+
+Bug fixes
+---------
+ 
+* A fix in Martian where multiple grok.Model or grok.Container classes
+  could result in something being found as a context twice.
+
+0.9 series (early 2007 until july 2007)
+=======================================
+
+Feature changes
+---------------
+
+Grok was released in "continuous release" mode from SVN during this period.
+
+0.1 series (september 2006 until early 2007)
+============================================
+
+Feature changes
+---------------
+
+Grok was created in september 2006.

Modified: grok/trunk/README.txt
===================================================================
--- grok/trunk/README.txt	2007-08-21 17:34:36 UTC (rev 79088)
+++ grok/trunk/README.txt	2007-08-21 17:52:03 UTC (rev 79089)
@@ -1,3 +1,6 @@
+Grok
+****
+
 What is grok?
 =============
 
@@ -10,6 +13,9 @@
 configuration language like ZCML nor a lot of repetition are needed to
 create a web application with grok.
 
+You can find out much more about Grok at our http://grok.zope.org
+website.
+
 Who is grok?
 ============
 

Modified: grok/trunk/setup.py
===================================================================
--- grok/trunk/setup.py	2007-08-21 17:34:36 UTC (rev 79088)
+++ grok/trunk/setup.py	2007-08-21 17:52:03 UTC (rev 79089)
@@ -1,21 +1,35 @@
 from setuptools import setup, find_packages
+import os
 
 # some of the dependencies containing C code have been hardcoded to
 # make sure we only depend on versions for which there is a windows
 # binary. In some cases this means we rely on an earlier version than the
 # latest/greatest version as no Windows binary has been released for it yet.
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
+long_description = (
+    read('README.txt')
+    + '\n' +
+    read('CHANGES.txt')
+    + '\n' +
+    'Download\n'
+    '********\n'
+    )
+
+open('doc.txt', 'w').write(long_description)
+
 setup(
     name='grok',
-    version='0.9',
+    version='0.10',
     author='Grok Team',
     author_email='grok-dev at zope.org',
-    url='https://launchpad.net/grok',
-    download_url='svn://svn.zope.org/repos/main/grok/trunk#egg=grok-dev',
+    url='http://grok.zope.org',
+    download_url='http://cheeseshop.python.org/pypi/grok/',
     description='Grok: Now even cavemen can use Zope 3!',
-    long_description=open('README.txt').read(),
+    long_description=long_description,
     license='ZPL',
-
     packages=find_packages('src'),
     package_dir = {'': 'src'},
     include_package_data = True,



More information about the Checkins mailing list