-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.version
88 lines (44 loc) · 2.05 KB
/
README.version
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
README.version: convention used for version numbers,
and release instructions
Convention followed for version numbers:
----------------------------------------
Starting with release 6.2.0 of tcptrace, we will be using version
numbers similar to those used for linux software. Following is the
convention followed for version numbers of the form x.y.z:
- 'z' changes for small bug fixes
- 'y' changes for certain feature enhancements and reasonably large
modifications. Also, even numbers indicate stable release and
odd numbers are for development versions
- 'x' changes when a whole lot has changed since the previous release
Release Instructions:
---------------------
NOTE: Stable release in this example : 6.4.0
----- Development version that follows : 6.5.0
~/tcptrace-cvs$ cvs tag release-6_4_0
~/tcptrace-cvs$ cd
~$ cvs export -d tcptrace-6.4.0 -r release-6_4_0 tcptrace
~$ tar cf tcptrace-6.4.0.tar tcptrace-6.4.0
etc. to create the build.
After that, go back to the tcptrace cvs workspace and *immediately* do the
following:
~/tcptrace-cvs$ cvs tag start-6_5
~/tcptrace-cvs$ cvs tag -b branch-6_5
Then modify the two branches appropriately:
*FOR BUG FIXES*
^^^^^^^^^^^^^^^
~/$ cvs co -d tcptrace-stable tcptrace
(change to *6.4.1, 6.4.2* etc. for each bug fixed and check in)
*FOR NEW FEATURE DEVELOPMENT*
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
~/$ cvs co -d tcptrace-devel -r branch-6_5 tcptrace
(change to *6.5.0* and check in)
Now anyone checking out 'tcptrace' with no args will get the
current *stable* branch (bug-fixes only), and anyone checking out with
'-r branch-6_5' would get the current development version with all of its
glorious new features, etc.
Version numbers then go on as 6.4.1, 6.4.2 bug-fixes and,
6.5.1, 6.5.2 etc for development versions until released as 6.6.0 or 7.0.0,
depending on magnitude of development.
--Avinash Lakhiani ([email protected])
--Ethan Blanton ([email protected])
27 Jul 2002