packages/VersionNumber.st
author Claus Gittinger <cg@exept.de>
Thu, 05 Mar 2020 11:17:28 +0100
changeset 4561 eace75531554
parent 1445 b8cc2792ab97
child 3011 1997ff6e7e55
permissions -rw-r--r--
#UI_ENHANCEMENT by cg class: SourceCodeManagerUtilities changed: #compareClassWithRepository:askForRevision: typos: genitive of class is class's - not classes.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1445
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     1
"
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     2
 COPYRIGHT (c) 2003 by eXept Software AG
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     3
              All Rights Reserved
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     4
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     5
 This software is furnished under a license and may be used
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     6
 only in accordance with the terms of that license and with the
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     8
 be provided or otherwise made available to, or used by, any
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
     9
 other person.  No title to or ownership of the software is
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    10
 hereby transferred.
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    11
"
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    12
1282
d6869c933c83 initial checkin
james
parents:
diff changeset
    13
"{ Package: 'stx:libbasic3' }"
d6869c933c83 initial checkin
james
parents:
diff changeset
    14
d6869c933c83 initial checkin
james
parents:
diff changeset
    15
"{ NameSpace: Packages }"
d6869c933c83 initial checkin
james
parents:
diff changeset
    16
d6869c933c83 initial checkin
james
parents:
diff changeset
    17
Magnitude subclass:#VersionNumber
d6869c933c83 initial checkin
james
parents:
diff changeset
    18
	instanceVariableNames:'numbers'
d6869c933c83 initial checkin
james
parents:
diff changeset
    19
	classVariableNames:''
d6869c933c83 initial checkin
james
parents:
diff changeset
    20
	poolDictionaries:''
d6869c933c83 initial checkin
james
parents:
diff changeset
    21
	category:'Package-helpers'
d6869c933c83 initial checkin
james
parents:
diff changeset
    22
!
d6869c933c83 initial checkin
james
parents:
diff changeset
    23
d6869c933c83 initial checkin
james
parents:
diff changeset
    24
VersionNumber comment:'I am a version number.  My representation allows me to handle an entire tree of versions.  Once created, an instance should not change (note: VersionNumbers could be canonicalized like Symbols, but are not currently).  
d6869c933c83 initial checkin
james
parents:
diff changeset
    25
d6869c933c83 initial checkin
james
parents:
diff changeset
    26
I am a magnitude so that you can see if one version preceeds another (only if the two versions are in the same branch).  
d6869c933c83 initial checkin
james
parents:
diff changeset
    27
d6869c933c83 initial checkin
james
parents:
diff changeset
    28
	''2.1'' asVersion < ''2.2.1'' asVersion	"true"
d6869c933c83 initial checkin
james
parents:
diff changeset
    29
	''2.3'' asVersion < ''2.2.1'' asVersion	"error different branches"
d6869c933c83 initial checkin
james
parents:
diff changeset
    30
	''2.3'' asVersion inSameBranchAs: ''2.2.1'' asVersion	"false, why the previous one failed."	
d6869c933c83 initial checkin
james
parents:
diff changeset
    31
	''2.1'' asVersion = ''2.1'' asVersion		"true, obviously"
d6869c933c83 initial checkin
james
parents:
diff changeset
    32
d6869c933c83 initial checkin
james
parents:
diff changeset
    33
To get the next version number in the same branch:
d6869c933c83 initial checkin
james
parents:
diff changeset
    34
d6869c933c83 initial checkin
james
parents:
diff changeset
    35
	''2.3.4'' asVersion next	"2.3.5"
d6869c933c83 initial checkin
james
parents:
diff changeset
    36
d6869c933c83 initial checkin
james
parents:
diff changeset
    37
To get the next version number, starting a new branch:
d6869c933c83 initial checkin
james
parents:
diff changeset
    38
d6869c933c83 initial checkin
james
parents:
diff changeset
    39
	''2.3.4'' asVersion branchNext		"2.3.4.1"
d6869c933c83 initial checkin
james
parents:
diff changeset
    40
d6869c933c83 initial checkin
james
parents:
diff changeset
    41
To get the common base version of any two version numbers (useful for merging):
d6869c933c83 initial checkin
james
parents:
diff changeset
    42
d6869c933c83 initial checkin
james
parents:
diff changeset
    43
	''2.3.8'' asVersion commonBase: ''2.3.4.1'' asVersion		"2.3.4"'
d6869c933c83 initial checkin
james
parents:
diff changeset
    44
!
d6869c933c83 initial checkin
james
parents:
diff changeset
    45
d6869c933c83 initial checkin
james
parents:
diff changeset
    46
!VersionNumber class methodsFor:'documentation'!
d6869c933c83 initial checkin
james
parents:
diff changeset
    47
1445
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    48
copyright
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    49
"
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    50
 COPYRIGHT (c) 2003 by eXept Software AG
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    51
              All Rights Reserved
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    52
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    53
 This software is furnished under a license and may be used
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    54
 only in accordance with the terms of that license and with the
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    55
 inclusion of the above copyright notice.   This software may not
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    56
 be provided or otherwise made available to, or used by, any
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    57
 other person.  No title to or ownership of the software is
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    58
 hereby transferred.
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    59
"
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    60
!
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
    61
1282
d6869c933c83 initial checkin
james
parents:
diff changeset
    62
documentation
d6869c933c83 initial checkin
james
parents:
diff changeset
    63
"
d6869c933c83 initial checkin
james
parents:
diff changeset
    64
    Taken from KomPackaging in squeak.
d6869c933c83 initial checkin
james
parents:
diff changeset
    65
d6869c933c83 initial checkin
james
parents:
diff changeset
    66
    [author:]
d6869c933c83 initial checkin
james
parents:
diff changeset
    67
d6869c933c83 initial checkin
james
parents:
diff changeset
    68
    [instance variables:]
d6869c933c83 initial checkin
james
parents:
diff changeset
    69
d6869c933c83 initial checkin
james
parents:
diff changeset
    70
    [class variables:]
d6869c933c83 initial checkin
james
parents:
diff changeset
    71
d6869c933c83 initial checkin
james
parents:
diff changeset
    72
    [see also:]
d6869c933c83 initial checkin
james
parents:
diff changeset
    73
d6869c933c83 initial checkin
james
parents:
diff changeset
    74
"
d6869c933c83 initial checkin
james
parents:
diff changeset
    75
!
d6869c933c83 initial checkin
james
parents:
diff changeset
    76
d6869c933c83 initial checkin
james
parents:
diff changeset
    77
examples
d6869c933c83 initial checkin
james
parents:
diff changeset
    78
"
d6869c933c83 initial checkin
james
parents:
diff changeset
    79
d6869c933c83 initial checkin
james
parents:
diff changeset
    80
  more examples to be added:
d6869c933c83 initial checkin
james
parents:
diff changeset
    81
                                                                [exBegin]
d6869c933c83 initial checkin
james
parents:
diff changeset
    82
    ... add code fragment for 
d6869c933c83 initial checkin
james
parents:
diff changeset
    83
    ... executable example here ...
d6869c933c83 initial checkin
james
parents:
diff changeset
    84
                                                                [exEnd]
d6869c933c83 initial checkin
james
parents:
diff changeset
    85
"
d6869c933c83 initial checkin
james
parents:
diff changeset
    86
!
d6869c933c83 initial checkin
james
parents:
diff changeset
    87
d6869c933c83 initial checkin
james
parents:
diff changeset
    88
history
d6869c933c83 initial checkin
james
parents:
diff changeset
    89
    "Created: / 20.5.2003 / 08:29:00 / james"
d6869c933c83 initial checkin
james
parents:
diff changeset
    90
! !
d6869c933c83 initial checkin
james
parents:
diff changeset
    91
d6869c933c83 initial checkin
james
parents:
diff changeset
    92
!VersionNumber class methodsFor:'as yet unclassified'!
d6869c933c83 initial checkin
james
parents:
diff changeset
    93
d6869c933c83 initial checkin
james
parents:
diff changeset
    94
first
d6869c933c83 initial checkin
james
parents:
diff changeset
    95
d6869c933c83 initial checkin
james
parents:
diff changeset
    96
	^self fromCollection: #(1)
d6869c933c83 initial checkin
james
parents:
diff changeset
    97
!
d6869c933c83 initial checkin
james
parents:
diff changeset
    98
d6869c933c83 initial checkin
james
parents:
diff changeset
    99
fromCollection: aCollection
d6869c933c83 initial checkin
james
parents:
diff changeset
   100
d6869c933c83 initial checkin
james
parents:
diff changeset
   101
	^self new
d6869c933c83 initial checkin
james
parents:
diff changeset
   102
		initializeNumbers: aCollection;
d6869c933c83 initial checkin
james
parents:
diff changeset
   103
		yourself
d6869c933c83 initial checkin
james
parents:
diff changeset
   104
!
d6869c933c83 initial checkin
james
parents:
diff changeset
   105
d6869c933c83 initial checkin
james
parents:
diff changeset
   106
fromString: aString
d6869c933c83 initial checkin
james
parents:
diff changeset
   107
d6869c933c83 initial checkin
james
parents:
diff changeset
   108
	^self fromCollection: 
d6869c933c83 initial checkin
james
parents:
diff changeset
   109
		((aString findTokens: '.') collect: [:ea | ea asNumber ])
d6869c933c83 initial checkin
james
parents:
diff changeset
   110
	
d6869c933c83 initial checkin
james
parents:
diff changeset
   111
! !
d6869c933c83 initial checkin
james
parents:
diff changeset
   112
d6869c933c83 initial checkin
james
parents:
diff changeset
   113
!VersionNumber methodsFor:'accessing'!
d6869c933c83 initial checkin
james
parents:
diff changeset
   114
d6869c933c83 initial checkin
james
parents:
diff changeset
   115
branchNext
d6869c933c83 initial checkin
james
parents:
diff changeset
   116
d6869c933c83 initial checkin
james
parents:
diff changeset
   117
	^self class fromCollection: (numbers, (Array with: 1))
d6869c933c83 initial checkin
james
parents:
diff changeset
   118
!
d6869c933c83 initial checkin
james
parents:
diff changeset
   119
d6869c933c83 initial checkin
james
parents:
diff changeset
   120
commonBase: aVersion
d6869c933c83 initial checkin
james
parents:
diff changeset
   121
d6869c933c83 initial checkin
james
parents:
diff changeset
   122
	| smallNums largeNums cutoff |
d6869c933c83 initial checkin
james
parents:
diff changeset
   123
	(aVersion numbers size <= numbers size) 
d6869c933c83 initial checkin
james
parents:
diff changeset
   124
		ifTrue: [smallNums := aVersion numbers. largeNums := numbers] 
d6869c933c83 initial checkin
james
parents:
diff changeset
   125
		ifFalse: [smallNums := numbers. largeNums := aVersion numbers].
d6869c933c83 initial checkin
james
parents:
diff changeset
   126
d6869c933c83 initial checkin
james
parents:
diff changeset
   127
	cutoff := (1 to: smallNums size) 
d6869c933c83 initial checkin
james
parents:
diff changeset
   128
		detect: [ :in | ((smallNums at: in) ~= (largeNums at: in))] 
d6869c933c83 initial checkin
james
parents:
diff changeset
   129
		ifNone: [^self class fromCollection: smallNums].
d6869c933c83 initial checkin
james
parents:
diff changeset
   130
d6869c933c83 initial checkin
james
parents:
diff changeset
   131
	^self class fromCollection: 
d6869c933c83 initial checkin
james
parents:
diff changeset
   132
		((numbers copyFrom: 1 to: (cutoff - 1)), 
d6869c933c83 initial checkin
james
parents:
diff changeset
   133
		(Array with: ((smallNums at: cutoff) min: (largeNums at: cutoff))))
d6869c933c83 initial checkin
james
parents:
diff changeset
   134
!
d6869c933c83 initial checkin
james
parents:
diff changeset
   135
d6869c933c83 initial checkin
james
parents:
diff changeset
   136
next
d6869c933c83 initial checkin
james
parents:
diff changeset
   137
d6869c933c83 initial checkin
james
parents:
diff changeset
   138
	| tmp |
d6869c933c83 initial checkin
james
parents:
diff changeset
   139
	tmp := numbers copy.
d6869c933c83 initial checkin
james
parents:
diff changeset
   140
	tmp at: numbers size put: (numbers last + 1).
d6869c933c83 initial checkin
james
parents:
diff changeset
   141
	^self class fromCollection: tmp
d6869c933c83 initial checkin
james
parents:
diff changeset
   142
!
d6869c933c83 initial checkin
james
parents:
diff changeset
   143
d6869c933c83 initial checkin
james
parents:
diff changeset
   144
numbers
d6869c933c83 initial checkin
james
parents:
diff changeset
   145
	"Answer a copy (to discourage people from directly changing a version number).
d6869c933c83 initial checkin
james
parents:
diff changeset
   146
	VersionNumbers should never change, instead, instantiate a new instance."
d6869c933c83 initial checkin
james
parents:
diff changeset
   147
d6869c933c83 initial checkin
james
parents:
diff changeset
   148
	^numbers copy
d6869c933c83 initial checkin
james
parents:
diff changeset
   149
!
d6869c933c83 initial checkin
james
parents:
diff changeset
   150
d6869c933c83 initial checkin
james
parents:
diff changeset
   151
previous
d6869c933c83 initial checkin
james
parents:
diff changeset
   152
d6869c933c83 initial checkin
james
parents:
diff changeset
   153
	| tmp |
d6869c933c83 initial checkin
james
parents:
diff changeset
   154
	numbers last = 1 ifTrue: 
d6869c933c83 initial checkin
james
parents:
diff changeset
   155
		[^self class fromCollection: (numbers allButLast)].
d6869c933c83 initial checkin
james
parents:
diff changeset
   156
	tmp := numbers copy.
d6869c933c83 initial checkin
james
parents:
diff changeset
   157
	tmp at: numbers size put: (numbers last - 1).
d6869c933c83 initial checkin
james
parents:
diff changeset
   158
	^self class fromCollection: tmp
d6869c933c83 initial checkin
james
parents:
diff changeset
   159
! !
d6869c933c83 initial checkin
james
parents:
diff changeset
   160
d6869c933c83 initial checkin
james
parents:
diff changeset
   161
!VersionNumber methodsFor:'comparing'!
d6869c933c83 initial checkin
james
parents:
diff changeset
   162
d6869c933c83 initial checkin
james
parents:
diff changeset
   163
< another 
d6869c933c83 initial checkin
james
parents:
diff changeset
   164
	"Answer whether the receiver is less than the argument."
d6869c933c83 initial checkin
james
parents:
diff changeset
   165
d6869c933c83 initial checkin
james
parents:
diff changeset
   166
	| tmp |
d6869c933c83 initial checkin
james
parents:
diff changeset
   167
	(self inSameBranchAs: another) ifFalse: 
d6869c933c83 initial checkin
james
parents:
diff changeset
   168
		[^self error: 'Receiver and argument in different branches'].
d6869c933c83 initial checkin
james
parents:
diff changeset
   169
d6869c933c83 initial checkin
james
parents:
diff changeset
   170
	tmp := another numbers.
d6869c933c83 initial checkin
james
parents:
diff changeset
   171
	(tmp size = numbers size) ifTrue:
d6869c933c83 initial checkin
james
parents:
diff changeset
   172
		[1 to: numbers size do: 
d6869c933c83 initial checkin
james
parents:
diff changeset
   173
			[ :in | (numbers at: in) < (tmp at: in) ifTrue: [^true]].
d6869c933c83 initial checkin
james
parents:
diff changeset
   174
		^false].
d6869c933c83 initial checkin
james
parents:
diff changeset
   175
d6869c933c83 initial checkin
james
parents:
diff changeset
   176
	^numbers size < tmp size
d6869c933c83 initial checkin
james
parents:
diff changeset
   177
!
d6869c933c83 initial checkin
james
parents:
diff changeset
   178
d6869c933c83 initial checkin
james
parents:
diff changeset
   179
= aVersion
d6869c933c83 initial checkin
james
parents:
diff changeset
   180
d6869c933c83 initial checkin
james
parents:
diff changeset
   181
	^numbers = aVersion numbers
d6869c933c83 initial checkin
james
parents:
diff changeset
   182
!
d6869c933c83 initial checkin
james
parents:
diff changeset
   183
d6869c933c83 initial checkin
james
parents:
diff changeset
   184
hash
d6869c933c83 initial checkin
james
parents:
diff changeset
   185
d6869c933c83 initial checkin
james
parents:
diff changeset
   186
	^numbers hash
d6869c933c83 initial checkin
james
parents:
diff changeset
   187
! !
d6869c933c83 initial checkin
james
parents:
diff changeset
   188
d6869c933c83 initial checkin
james
parents:
diff changeset
   189
!VersionNumber methodsFor:'initialization'!
d6869c933c83 initial checkin
james
parents:
diff changeset
   190
d6869c933c83 initial checkin
james
parents:
diff changeset
   191
initializeNumbers: aCollection
d6869c933c83 initial checkin
james
parents:
diff changeset
   192
d6869c933c83 initial checkin
james
parents:
diff changeset
   193
	aCollection do: [ :ea | 
d6869c933c83 initial checkin
james
parents:
diff changeset
   194
		ea <= 0 ifTrue: 
d6869c933c83 initial checkin
james
parents:
diff changeset
   195
			[^self error: 'VersionNumbers cannot contain zero or negative numbers']].
d6869c933c83 initial checkin
james
parents:
diff changeset
   196
d6869c933c83 initial checkin
james
parents:
diff changeset
   197
	numbers := aCollection asArray
d6869c933c83 initial checkin
james
parents:
diff changeset
   198
! !
d6869c933c83 initial checkin
james
parents:
diff changeset
   199
d6869c933c83 initial checkin
james
parents:
diff changeset
   200
!VersionNumber methodsFor:'printing'!
d6869c933c83 initial checkin
james
parents:
diff changeset
   201
d6869c933c83 initial checkin
james
parents:
diff changeset
   202
printOn: strm
d6869c933c83 initial checkin
james
parents:
diff changeset
   203
d6869c933c83 initial checkin
james
parents:
diff changeset
   204
	self storeOn: strm
d6869c933c83 initial checkin
james
parents:
diff changeset
   205
!
d6869c933c83 initial checkin
james
parents:
diff changeset
   206
d6869c933c83 initial checkin
james
parents:
diff changeset
   207
storeOn: strm
d6869c933c83 initial checkin
james
parents:
diff changeset
   208
d6869c933c83 initial checkin
james
parents:
diff changeset
   209
	strm nextPut: $'.
d6869c933c83 initial checkin
james
parents:
diff changeset
   210
	self versionStringOn: strm.
d6869c933c83 initial checkin
james
parents:
diff changeset
   211
	strm nextPutAll: ''' asVersion'.
d6869c933c83 initial checkin
james
parents:
diff changeset
   212
!
d6869c933c83 initial checkin
james
parents:
diff changeset
   213
d6869c933c83 initial checkin
james
parents:
diff changeset
   214
versionString
d6869c933c83 initial checkin
james
parents:
diff changeset
   215
d6869c933c83 initial checkin
james
parents:
diff changeset
   216
	^String streamContents: [ :strm | self versionStringOn: strm ]
d6869c933c83 initial checkin
james
parents:
diff changeset
   217
!
d6869c933c83 initial checkin
james
parents:
diff changeset
   218
d6869c933c83 initial checkin
james
parents:
diff changeset
   219
versionStringOn: strm
d6869c933c83 initial checkin
james
parents:
diff changeset
   220
d6869c933c83 initial checkin
james
parents:
diff changeset
   221
	| first |
d6869c933c83 initial checkin
james
parents:
diff changeset
   222
	first := true.
d6869c933c83 initial checkin
james
parents:
diff changeset
   223
	numbers do: [ :ea |
d6869c933c83 initial checkin
james
parents:
diff changeset
   224
		first ifFalse: [strm nextPut: $.].
d6869c933c83 initial checkin
james
parents:
diff changeset
   225
		first := false.
d6869c933c83 initial checkin
james
parents:
diff changeset
   226
		ea printOn: strm]
d6869c933c83 initial checkin
james
parents:
diff changeset
   227
	
d6869c933c83 initial checkin
james
parents:
diff changeset
   228
! !
d6869c933c83 initial checkin
james
parents:
diff changeset
   229
d6869c933c83 initial checkin
james
parents:
diff changeset
   230
!VersionNumber methodsFor:'testing'!
d6869c933c83 initial checkin
james
parents:
diff changeset
   231
d6869c933c83 initial checkin
james
parents:
diff changeset
   232
inSameBranchAs: aVersion
d6869c933c83 initial checkin
james
parents:
diff changeset
   233
d6869c933c83 initial checkin
james
parents:
diff changeset
   234
	| less more |
d6869c933c83 initial checkin
james
parents:
diff changeset
   235
	(aVersion numbers size <= numbers size) 
d6869c933c83 initial checkin
james
parents:
diff changeset
   236
		ifTrue: [less := aVersion numbers. more := numbers] 
d6869c933c83 initial checkin
james
parents:
diff changeset
   237
		ifFalse: [less := numbers. more := aVersion numbers].
d6869c933c83 initial checkin
james
parents:
diff changeset
   238
d6869c933c83 initial checkin
james
parents:
diff changeset
   239
	1 to: (less size - 1) do: [ :in | ((less at: in) = (more at: in)) ifFalse: [^false]].
d6869c933c83 initial checkin
james
parents:
diff changeset
   240
	^less size = more size or:
d6869c933c83 initial checkin
james
parents:
diff changeset
   241
		[(less at: less size) <= (more at: less size)]
d6869c933c83 initial checkin
james
parents:
diff changeset
   242
! !
d6869c933c83 initial checkin
james
parents:
diff changeset
   243
d6869c933c83 initial checkin
james
parents:
diff changeset
   244
!VersionNumber class methodsFor:'documentation'!
d6869c933c83 initial checkin
james
parents:
diff changeset
   245
d6869c933c83 initial checkin
james
parents:
diff changeset
   246
version
1445
b8cc2792ab97 copyright
Claus Gittinger <cg@exept.de>
parents: 1282
diff changeset
   247
    ^ '$Header: /cvs/stx/stx/libbasic3/packages/VersionNumber.st,v 1.2 2006-01-10 09:31:53 cg Exp $'
1282
d6869c933c83 initial checkin
james
parents:
diff changeset
   248
! !