forked from warriorframework/warriorframework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release_notes.txt
executable file
·116 lines (80 loc) · 2.82 KB
/
release_notes.txt
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
Release: Ninja
Version: warrior-3.9.1
===================
1: Release details
===================
This is release Ninja of Warrior Test Automation Framework
-------------------------------
1.1: List of available releases
-------------------------------
1. Ninja = warrior-3.1.0 to current
==================
2. Version Details
==================
You are on Release Ninja, Version warrior-3.9.1 of Warrior Framework.
Procedure to get a specific version is available in section-3 of this document.
+++++++++++++++++++++++++++++++++
2.1. Change log for this release
+++++++++++++++++++++++++++++++++
---------
Bugfixes:
---------
[WAR-1911] - Revert changes made to set default value for env in pexpect_spawn_with_env method
=================================================
3. Procedure to get a specific version of Warrior
=================================================
1. Clone warriorframework
$ git clone https://github.com/warriorframework/warriorframework.git
2. go to warriorframework directory
$cd warriorframework
3. To check the list of versions available, execute "git tag --list" command
$ git tag --list
warior-3.1.0
warior-3.1.1
warior-3.2.0
warior-3.3.0
$
3. To Check the current version you are at, execute "git branch" command
$ git branch
* master
$
- * indicates the active version.
- In the above example master is the active version.
- If the active version is master it means you are not using a standard release version of warrior framework and hence it may
not be a stable tested version.
4. To switch to a specific version from master, execute 'git checkout <version_name>' command.
$ git checkout warrior-3.3.0
Note: checking out 'warrior-3.3.0'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b <new-branch-name>
HEAD is now at 146313d... reduce command timeout, wait after timeout=60
$
5. Execute git branch command to verify the active version.
$ git branch
* (HEAD detached at warrior-3.3.0)
master
$
- * indicates the active version.
6. Switch from one version to another (current=warrior-3.3.0, switch to warrior-3.2.0)
$ git checkout warrior-3.2.0
Previous HEAD position was 146313d... reduce command timeout, wait after timeout=60
HEAD is now at ecb6373... WAR-180, handle nd prompt on timeout
$
$ git branch
* (HEAD detached at warrior-3.2.0)
master
$
7. Switch to master branch again.
$ git checkout master
Previous HEAD position was ecb6373... WAR-180, handle nd prompt on timeout
Switched to branch 'master'
Your branch is up-to-date with 'origin/master'.
$
$
$ git branch
* master
$