Skip to content

Commit 419b4f5

Browse files
committed
[release] increases version to 0.9.1
1 parent e331001 commit 419b4f5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ Library RequestsLibrary
1818
1919
*** Test Cases ***
2020
21-
Quick Get Request
21+
Quick Get Request Test
2222
${response}= GET https://www.google.com
2323
2424
Quick Get Request With Parameters Test
2525
${response}= GET https://www.google.com/search params=query=ciao expected_status=200
2626
27-
Quick Get A JSON Body
27+
Quick Get A JSON Body Test
2828
${response}= GET https://jsonplaceholder.typicode.com/posts/1
2929
Should Be Equal As Strings 1 ${response.json()}[id]
3030
```

src/RequestsLibrary/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ class RequestsLibrary(RequestsOnSessionKeywords, DeprecatedKeywords):
3232
| Library RequestsLibrary
3333
|
3434
| *** Test Cases ***
35-
| Quick Get Request
35+
| Quick Get Request Test
3636
| ${response}= GET https://www.google.com
3737
|
3838
| Quick Get Request With Parameters Test
3939
| ${response}= GET https://www.google.com/search params=query=ciao expected_status=200
4040
|
41-
| Quick Get A JSON Body
41+
| Quick Get A JSON Body Test
4242
| ${response}= GET https://jsonplaceholder.typicode.com/posts/1
4343
| Should Be Equal As Strings 1 ${response.json()}[id]
4444

src/RequestsLibrary/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = '0.9'
1+
VERSION = '0.9.1'

0 commit comments

Comments
 (0)