[Checkins] SVN: megrok.kss/trunk/ prepare for release

Godefroid Chapelle gotcha at bubblenet.be
Mon Aug 18 05:24:39 EDT 2008


Log message for revision 89961:
  prepare for release

Changed:
  D   megrok.kss/trunk/CHANGES.txt
  A   megrok.kss/trunk/CHANGES.txt
  D   megrok.kss/trunk/docs/HISTORY.txt
  U   megrok.kss/trunk/setup.py

-=-
Deleted: megrok.kss/trunk/CHANGES.txt
===================================================================
--- megrok.kss/trunk/CHANGES.txt	2008-08-18 08:25:26 UTC (rev 89960)
+++ megrok.kss/trunk/CHANGES.txt	2008-08-18 09:24:38 UTC (rev 89961)
@@ -1,15 +0,0 @@
-megrok.kss changes
-******************
-
-0.2 (unreleased)
-=================
-
-Restructuring
--------------
-
-* Change the KSSGrokker to use the new grokcore.component directives.
-
-0.1 (2008-04-30)
-================
-
-Initial release

Copied: megrok.kss/trunk/CHANGES.txt (from rev 89960, megrok.kss/trunk/docs/HISTORY.txt)
===================================================================
--- megrok.kss/trunk/CHANGES.txt	                        (rev 0)
+++ megrok.kss/trunk/CHANGES.txt	2008-08-18 09:24:38 UTC (rev 89961)
@@ -0,0 +1,21 @@
+Changelog for megrok.kss
+------------------------
+
+    (name of developer listed in brackets)
+
+megrok.kss - 0.2  Released 2008-08-18
+
+    - Fixes for 0.13 compatibility
+      [gotcha]
+
+    - To simplify the usage of KSS in Grok we renamed the `KSSActions` class
+      to `KSS`, which is more in line with the JSON and WSGI extensions. In
+      Grok, you apply KSS on a view rather than a content object.
+      Use: grok.view(MyViewClass) to register it.
+      [jladage] 
+    
+megrok.kss - 0.1 Released 2008-04-30
+
+    - basic kss.core support
+      [gotcha]
+


Property changes on: megrok.kss/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:mergeinfo
   + 

Deleted: megrok.kss/trunk/docs/HISTORY.txt
===================================================================
--- megrok.kss/trunk/docs/HISTORY.txt	2008-08-18 08:25:26 UTC (rev 89960)
+++ megrok.kss/trunk/docs/HISTORY.txt	2008-08-18 09:24:38 UTC (rev 89961)
@@ -1,15 +0,0 @@
-Changelog for megrok.kss
-------------------------
-
-    (name of developer listed in brackets)
-
-megrok.kss - 0.2 Unreleased
-
-    - To simplify the usage of KSS in Grok we renamed the `KSSActions` class
-      to `KSS`, which is more in line with the JSON and WSGI extensions. In
-      Grok, you apply KSS on a view rather than a content object.
-      Use: grok.view(MyViewClass) to register it.
- 
-    -  [jladage] - - megrok.kss - 0.1 Released 2008-04-30 - - - basic kss.core
-      support [gotcha]
-

Modified: megrok.kss/trunk/setup.py
===================================================================
--- megrok.kss/trunk/setup.py	2008-08-18 08:25:26 UTC (rev 89960)
+++ megrok.kss/trunk/setup.py	2008-08-18 09:24:38 UTC (rev 89961)
@@ -4,32 +4,32 @@
 
 version = '0.2'
 
+
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 long_description = (
         read('docs', 'README.txt') + '\n' +
-        read('docs', 'HISTORY.txt') + '\n' +
-        read('docs', 'CREDITS.txt')
-        )
+        read('.', 'CHANGES.txt') + '\n' +
+        read('docs', 'CREDITS.txt'))
 
 setup(name='megrok.kss',
       version=version,
       description="KSS for Grok. Ajax with Style, see http://kssproject.org",
       long_description=long_description,
-      classifiers=[], 
+      classifiers=[],
       keywords="",
       author="Godefroid Chapelle",
       author_email="gotcha at bubblenet.be",
       url="",
       license="ZPL",
       package_dir={'': 'src'},
-      namespace_packages=['megrok'],      
+      namespace_packages=['megrok'],
       packages=find_packages('src'),
       include_package_data=True,
       zip_safe=False,
       install_requires=['setuptools',
-                        'grok>=0.12',
+                        'grok>=0.13',
                         'kss.core>=1.4,<1.4.99',
                         # -*- Extra requirements: -*-
                         ],



More information about the Checkins mailing list