Changeset 1418

Show
Ignore:
Timestamp:
10/07/05 06:31:04 (3 years ago)
Author:
paul
Message:

Changed version and updated revision in ChangeLog? in preparation for tagging
version 0.4.2.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r1417 r1418  
    11See the Subversion log for all the details. 
    22 
    3 Dabo-0.4.2 (2005-10-07) (Revision 14??): 
     3Dabo-0.4.2 (2005-10-07) (Revision 1418): 
    44Added PrimaryBizobj property to dForm, which can replace calls to getPrimaryBizobj(). 
    55 
  • trunk/dabo/__version__.py

    r1232 r1418  
    22import dabo 
    33 
    4 # If dabo is a subversion working copy, we'll try to get the current 
    5 # revision using the svnversion command against that working copy. 
    6 # Else, we'll get the revision as saved in _daborevs, which is an 
    7 # external svn repository updated by a svn post-commit hook on the 
    8 # server.  
     4_version = "0.4.2" 
     5 
     6# If dabo is a subversion working copy, we'll try to get the current revision  
     7# using the svnversion command against that working copy. Otherwise, we'll get 
     8# the revision as saved in _daborevs, which is an external svn repository  
     9# updated by a svn post-commit hook on the server.  
    910daboPath = dabo.__path__[0] 
    1011_revision = None 
     
    2324    _revision = _revs["dabo"] 
    2425 
    25 version = {"version": "0.4.1"
     26version = {"version": _version
    2627           "revision": _revision} 
    2728