File tree Expand file tree Collapse file tree 3 files changed +30
-8
lines changed Expand file tree Collapse file tree 3 files changed +30
-8
lines changed Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ unit-tests:
2424# ##################
2525build-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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
2222OPEN 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
3232from openplatform import OpenPlatform
3333
34- # Access api via instance of OpenPlatform class
34+ # Access API via instance of OpenPlatform class
3535op = 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
You can’t perform that action at this time.
0 commit comments