Skip to content

Commit 837d967

Browse files
committed
Merge remote-tracking branch 'origin/master' into development
2 parents 8a09194 + 0190f36 commit 837d967

File tree

3 files changed

+30
-8
lines changed

3 files changed

+30
-8
lines changed

.gitlab-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ unit-tests:
2424
###################
2525
build-package:
2626
stage: build
27-
variables:
28-
VERSION: build
2927
script:
28+
- VERSION=$(echo ${CI_COMMIT_REF_NAME} | sed "s/v//")
29+
- export VERSION=$VERSION
3030
- envsubst '${VERSION}' < setup.py > setup.py.new
3131
- mv setup.py.new setup.py
3232
- python3 setup.py sdist bdist_wheel

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6+
7+
## [1.0.0] - 2018-07-31
8+
### Added
9+
- Get all scaffolds API
10+
- Get scaffold API
11+
- Deploy scaffold API
12+
- Set scaffold webhook API
13+
- Get scaffold summary API
14+
- Deactivate scaffold API
15+
- Get scaffold quota API
16+
- Add shareholder API
17+
- Update shareholder API
18+
- Remove shareholder API
19+
- Get all transactions API
20+
- Tests
21+
22+
[1.0.0]: https://github.com/OpenFuturePlatform/open-api-python-sdk/compare/e8d583f41e071d56dbc6dcf924bcc3a35c85b302...v1.0.0

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# open-api-sdk
22

3-
A library for interactions with Open Platform.
3+
Open-api-sdk is a library for interaction with Open Platform.
44

55
## Content
66

@@ -21,22 +21,22 @@ $ pip install open-api-sdk
2121
## Get started
2222
OPEN Platform uses OpenKeys to allow access to the API. You can register a new OpenKey at your [Account.](https://api.openfuture.io/ "Open API")
2323

24-
OPEN Platform expects for the OpenKey to be included in all API requests to the server in a header.
24+
OPEN Platform expects the OpenKey to be included in all API requests to the server in a header.
2525

26-
We assume you have an open_key by this moment.
26+
We assume that you have the OpenKey by this moment.
2727

28-
To access the library import the OpenPlatform class and call an instance of it with open key as followed:
28+
To access the library import an OpenPlatform class and call an instance with the OpenKey as following:
2929

3030

3131
```python
3232
from openplatform import OpenPlatform
3333

34-
# Access api via instance of OpenPlatform class
34+
# Access API via instance of OpenPlatform class
3535
op = OpenPlatform(open_key)
3636
```
3737
`open_key` - your open key.
3838

39-
In the following examples it is assumed the `op` is the result of instantiating the `OpenPlatform` class with `open_key`
39+
In the following examples, it is assumed that `op` is a result of instantiating the `OpenPlatform` class with the `open_key`
4040

4141
### API
4242

0 commit comments

Comments
 (0)