[Modeling-cvs] NotificationFramework vertoo.config,1.2,1.3 CHANGES,1.8,1.9 __init__.py,1.4,1.5
Status: Abandoned
Brought to you by:
sbigaret
From: <sbi...@us...> - 2004-02-14 19:48:06
|
Update of /cvsroot/modeling/NotificationFramework In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16027 Modified Files: vertoo.config CHANGES __init__.py Log Message: Added attribute __version__ to package NotificationFramework Index: vertoo.config =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/vertoo.config,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** vertoo.config 1 Feb 2004 12:38:38 -0000 1.2 --- vertoo.config 14 Feb 2004 19:41:22 -0000 1.3 *************** *** 7,10 **** --- 7,12 ---- nf.addAnchors("setup.py", arguments(pattern="version=%Q", format='@normal')) + nf.addAnchors("__init__.py", + arguments(pattern="__version__=%Q", format='@normal')) setSCMInfo(tool="cvs", Index: CHANGES =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/CHANGES,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** CHANGES 2 Feb 2004 21:36:14 -0000 1.8 --- CHANGES 14 Feb 2004 19:41:22 -0000 1.9 *************** *** 1,2 **** --- 1,5 ---- + + - Added attribute __version__ to package NotificationFramework + 0.6.1 [2004/02/01] Index: __init__.py =================================================================== RCS file: /cvsroot/modeling/NotificationFramework/__init__.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** __init__.py 26 May 2003 12:57:20 -0000 1.4 --- __init__.py 14 Feb 2004 19:41:22 -0000 1.5 *************** *** 1,6 **** #----------------------------------------------------------------------------- # # Notification Framework: "Observer" Design Pattern for python ! # (c) 2001, 2002, 2003 Sebastien Bigaret # # This file is part of the Notification Framework. --- 1,7 ---- + # -*- coding: iso-8859-1 -*- #----------------------------------------------------------------------------- # # Notification Framework: "Observer" Design Pattern for python ! # (c) 2001, 2002, 2003 Sébastien Bigaret # # This file is part of the Notification Framework. *************** *** 31,32 **** --- 32,34 ---- It is distributed under the GNU General Public License. """ + __version__="0.6.1" |