Skip to content

Commit c025540

Browse files
committed
Prepare v0.7.0 release
1 parent 310e36e commit c025540

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ You will see the services graciously shutdown.
7676

7777
**N.B.** The URI's below may alternate between ***localhost*** and ***0.0.0.0*** depending on whether your workstation is Windows (localhost) or Linux/Mac (0.0.0.0)
7878

79-
Navigate to [http://localhost:5433/v0.6.0/ui/](http://0.0.0.0:5433/v0.6.0/ui/)
79+
Navigate to [http://localhost:5433/v0.7.0/ui/](http://0.0.0.0:5433/v0.7.0/ui/)
8080
to see the tagbase-server UI running.
8181
**It will really help for you to read the API documentation provided in the Web Application.**
8282
Using the `/ingest/etuff` API, you can execute the following commands to initiate a primitive test
@@ -85,13 +85,13 @@ ingestion of some sample eTUFF-sailfish-117259.txt data present on the server.
8585
using curl...
8686

8787
```bash
88-
curl -X GET --header 'Accept: application/json' 'http://0.0.0.0:5433/v0.6.0/ingest?granule_id=1234&file=file%3A%2F%2F%2Fusr%2Fsrc%2Fapp%2Fdata%2FeTUFF-sailfish-117259.txt&type=etuff'
88+
curl -X GET --header 'Accept: application/json' 'http://0.0.0.0:5433/v0.7.0/ingest?granule_id=1234&file=file%3A%2F%2F%2Fusr%2Fsrc%2Fapp%2Fdata%2FeTUFF-sailfish-117259.txt&type=etuff'
8989
```
9090

9191
...or using a Request URL
9292

9393
```bash
94-
http://0.0.0.0:5433/v0.6.0/ingest/etuff?granule_id=1234&file=file%3A%2F%2F%2Fusr%2Fsrc%2Fapp%2Fdata%2FeTUFF-sailfish-117259.txt&type=etuff
94+
http://0.0.0.0:5433/v0.7.0/ingest/etuff?granule_id=1234&file=file%3A%2F%2F%2Fusr%2Fsrc%2Fapp%2Fdata%2FeTUFF-sailfish-117259.txt&type=etuff
9595
```
9696

9797
**N.B.** The REST server is capable of ingesting data over `file`, `ftp`, `http` and `https` protocols.

openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ info:
1313
url: https://www.apache.org/licenses/LICENSE-2.0
1414
termsOfService: TODO
1515
title: tagbase-server API
16-
version: v0.6.0
16+
version: v0.7.0
1717
servers:
1818
- description: Local development tagbase-server
19-
url: https://0.0.0.0:5433/v0.6.0
19+
url: https://0.0.0.0:5433/v0.7.0
2020
tags:
2121
- description: Ingestion operations.
2222
name: ingest

tagbase_server/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from setuptools import setup, find_packages
55

66
NAME = "tagbase_server"
7-
VERSION = "v0.6.0"
7+
VERSION = "v0.7.0"
88

99
# To install the library, run the following
1010
#

tagbase_server/tagbase_server/openapi/openapi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ info:
1313
url: https://www.apache.org/licenses/LICENSE-2.0
1414
termsOfService: TODO
1515
title: tagbase-server API
16-
version: v0.6.0
16+
version: v0.7.0
1717
servers:
1818
- description: Local development tagbase-server
19-
url: https://0.0.0.0:5433/v0.6.0
19+
url: https://0.0.0.0:5433/v0.7.0
2020
tags:
2121
- description: Ingestion operations.
2222
name: ingest

tagbase_server/tagbase_server/test/test_ingest_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_ingest_etuff_get(self):
2222
"Accept": "application/json",
2323
}
2424
response = self.client.open(
25-
"/v0.6.0/ingest",
25+
"/v0.7.0/ingest",
2626
method="GET",
2727
headers=headers,
2828
query_string=query_string,

tagbase_server/tagbase_server/test/test_tags_controller.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def test_get_tag(self):
1717
"Accept": "application/json",
1818
}
1919
response = self.client.open(
20-
"/v0.6.0/tags/{tag_id}".format(tag_id=3), method="GET", headers=headers
20+
"/v0.7.0/tags/{tag_id}".format(tag_id=3), method="GET", headers=headers
2121
)
2222
self.assert500(response, "Response body is : " + response.data.decode("utf-8"))
2323

@@ -29,7 +29,7 @@ def test_list_tags(self):
2929
headers = {
3030
"Accept": "application/json",
3131
}
32-
response = self.client.open("/v0.6.0/tags", method="GET", headers=headers)
32+
response = self.client.open("/v0.7.0/tags", method="GET", headers=headers)
3333
self.assert500(response, "Response body is : " + response.data.decode("utf-8"))
3434

3535
def test_put_tag(self):
@@ -45,7 +45,7 @@ def test_put_tag(self):
4545
("version", "2"),
4646
]
4747
response = self.client.open(
48-
"/v0.6.0/tags/{tag_id}/subs/{sub_id}".format(tag_id=3, sub_id=6),
48+
"/v0.7.0/tags/{tag_id}/subs/{sub_id}".format(tag_id=3, sub_id=6),
4949
method="PUT",
5050
headers=headers,
5151
query_string=query_string,

0 commit comments

Comments
 (0)