bump versions, after recent publications (#1646)

* bump versions, after recent publications

* Changelog updates and version bumps

* Correct broken URL's in setup.py's

* Correct SRA Client description (append "Client")

* Add convenience script for uninstalling all pkgs

* Add documentation link to SRA Client README.md
This commit is contained in:
F. Eugene Aumson
2019-04-30 15:56:40 -04:00
committed by GitHub
parent d6115cff25
commit 222a151eff
18 changed files with 90 additions and 44 deletions

View File

@@ -1,22 +0,0 @@
[
{
"version": "1.0.1",
"changes": [
{
"note": "Fix regex validation on numeric values",
"pr": 1731
}
],
"timestamp": 1553491629
},
{
"version": "1.0.1",
"changes": [
{
"note": "Added new devdependencies, and linting commands to `setup.py`. Added sphinx docs to demonstrate how to use sra_client.",
"pr": 1734
}
],
"timestamp": 1553183790
}
]

View File

@@ -0,0 +1,11 @@
# Changelog
## 1.0.0 - 2018-12-11
- Initial release.
## 2.0.0 - 2019-04-30
- Moved module `sra_client` into `zero_ex` namespace.
- Fixed regular expression that validates numeric values. Before, validation would fail for all of: maker and taker fees, maker and taker asset amounts, salt, and expiration time.
- Expanded documentation.

View File

@@ -2,6 +2,8 @@
A Python client for interacting with servers conforming to [the Standard Relayer API specification](https://github.com/0xProject/0x-monorepo/tree/development/packages/sra-spec).
Read the [documentation](http://0x-sra-client-py.s3-website-us-east-1.amazonaws.com/)
# Schemas
The [JSON schemas](http://json-schema.org/) for the API payloads and responses can be found in [@0xproject/json-schemas](https://github.com/0xProject/0x-monorepo/tree/development/packages/json-schemas). Examples of each payload and response can be found in the 0x.js library's [test suite](https://github.com/0xProject/0x-monorepo/blob/development/packages/json-schemas/test/schema_test.ts#L1).

View File

@@ -12,7 +12,7 @@ from setuptools import setup, find_packages # noqa: H301
from setuptools.command.test import test as TestCommand
NAME = "0x-sra-client"
VERSION = "1.0.1"
VERSION = "2.0.0"
# To install the library, run the following
#
# python setup.py install
@@ -148,9 +148,12 @@ class PublishDocsCommand(distutils.command.build_py.build_py):
setup(
name=NAME,
version=VERSION,
description="Standard Relayer REST API",
description="Standard Relayer REST API Client",
author_email="",
url="https://github.com/0xproject/0x-monorepo/python-packages/sra_client",
url=(
"https://github.com/0xproject/0x-monorepo/tree/development"
"/python-packages/sra_client"
),
keywords=["OpenAPI", "OpenAPI-Generator", "Standard Relayer REST API"],
install_requires=REQUIRES,
namespace_packages=["zero_ex"],