Skip to content

Commit 4e15c8f

Browse files
authored
Bumped version to 2.1rc1. (#62)
* Bumped version to 2.1rc1. * Refactored dependencies.
1 parent a2cf850 commit 4e15c8f

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

PROTOCOL.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,20 @@
11
# Filetracker server API
22

3-
Filetracker server (starting from version 2.0) provides a simple HTTP API for
3+
Filetracker server (starting from version 2.1) provides a simple HTTP API for
44
clients. Filetracker client is the primary consumer of this API, but its simplicity
55
allows to interact with the server using plain `curl` or Python `requests`.
66

7-
## API reference
7+
## API reference (version 2)
8+
9+
### `GET /version`
10+
11+
Responds with the following JSON:
12+
13+
```json
14+
{
15+
"protocol_versions": [2]
16+
}
17+
```
818

919
### `GET /files/{path}`
1020

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22
setup(
33
name = 'filetracker',
4-
version = '2.0',
4+
version = '2.1rc1',
55
author = 'SIO2 Project Team',
66
author_email = '[email protected]',
77
description = 'Filetracker caching file storage',
@@ -13,7 +13,8 @@
1313
install_requires = [
1414
'bsddb3',
1515
'flup6',
16-
'gunicorn[gevent]',
16+
'gunicorn',
17+
'gevent',
1718
'progressbar2',
1819
'requests',
1920
'six',

0 commit comments

Comments
 (0)