Compare commits

..

7 Commits

Author SHA1 Message Date
Leonid Logvinov
2c659d3d82 Publish
- @0xproject/react-docs-example@0.0.10
 - @0xproject/react-docs@0.0.10
 - @0xproject/react-shared@0.1.5
 - @0xproject/website@0.0.31
2018-05-04 23:55:03 +02:00
Leonid Logvinov
5ffff7397e Updated CHANGELOGS 2018-05-04 23:54:57 +02:00
Leonid Logvinov
1a36459ab8 Fix property name 2018-05-04 22:41:39 +02:00
Leonid Logvinov
33cc79c13b Upgrade react types version 2018-05-04 21:17:07 +02:00
Leonid Logvinov
b4cb21b55e Publish
- 0x.js@0.37.1
 - contracts@2.1.27
 - @0xproject/order-utils@0.0.3
 - @0xproject/sra-report@0.0.13
 - @0xproject/testnet-faucets@1.0.28
 - @0xproject/website@0.0.30
2018-05-04 20:44:18 +02:00
Leonid Logvinov
ae68c3abe4 Updated CHANGELOGS 2018-05-04 20:44:12 +02:00
Leonid Logvinov
91fdd6fc29 Make a negligible change to order-utils to publish a new version 2018-05-04 19:07:02 +02:00
23 changed files with 780 additions and 5704 deletions

View File

@@ -1,4 +1,13 @@
[
{
"timestamp": 1525453812,
"version": "0.37.1",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{
"version": "0.37.0",
"changes": [

View File

@@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG
## v0.37.1 - _May 4, 2018_
* Dependencies updated
## v0.37.0 - _May 4, 2018_
* Fixed expiration watcher comparator to handle orders with equal expiration times (#526)

View File

@@ -1,6 +1,6 @@
{
"name": "0x.js",
"version": "0.37.0",
"version": "0.37.1",
"description": "A javascript library for interacting with the 0x protocol",
"keywords": [
"0x.js",
@@ -100,7 +100,7 @@
"@0xproject/assert": "^0.2.8",
"@0xproject/base-contract": "^0.3.0",
"@0xproject/json-schemas": "^0.7.22",
"@0xproject/order-utils": "^0.0.2",
"@0xproject/order-utils": "^0.0.3",
"@0xproject/types": "^0.6.2",
"@0xproject/typescript-typings": "^0.3.0",
"@0xproject/utils": "^0.6.0",

View File

@@ -1,7 +1,7 @@
{
"private": true,
"name": "contracts",
"version": "2.1.26",
"version": "2.1.27",
"description": "Smart contract components of 0x protocol",
"main": "index.js",
"directories": {
@@ -60,7 +60,7 @@
"yargs": "^10.0.3"
},
"dependencies": {
"0x.js": "^0.37.0",
"0x.js": "^0.37.1",
"@0xproject/deployer": "^0.4.2",
"@0xproject/types": "^0.6.2",
"@0xproject/typescript-typings": "^0.3.0",

View File

@@ -1,4 +1,13 @@
[
{
"timestamp": 1525453812,
"version": "0.0.3",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{
"timestamp": 1525428773,
"version": "0.0.2",

View File

@@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG
## v0.0.3 - _May 4, 2018_
* Dependencies updated
## v0.0.2 - _May 4, 2018_
* Dependencies updated

View File

@@ -1,6 +1,6 @@
{
"name": "@0xproject/order-utils",
"version": "0.0.2",
"version": "0.0.3",
"description": "0x order utils",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",

View File

@@ -1,6 +1,6 @@
export { getOrderHashHex, isValidOrderHash } from './order_hash';
export { isValidSignature, signOrderHashAsync } from './signature_utils';
export { orderFactory } from './order_factory';
export { generatePseudoRandomSalt } from './salt';
export { constants } from './constants';
export { generatePseudoRandomSalt } from './salt';
export { OrderError } from './types';

View File

@@ -1,7 +1,7 @@
{
"private": true,
"name": "@0xproject/react-docs-example",
"version": "0.0.9",
"version": "0.0.10",
"description": "An example app using react-docs",
"scripts": {
"lint": "tslint --project . 'ts/**/*.ts' 'ts/**/*.tsx'",
@@ -27,7 +27,7 @@
"@types/lodash": "4.14.104",
"@types/material-ui": "0.18.0",
"@types/node": "^8.0.53",
"@types/react": "16.0.41",
"@types/react": "16.3.13",
"@types/react-dom": "^16.0.3",
"@types/react-tap-event-plugin": "0.0.30",
"awesome-typescript-loader": "^3.1.3",
@@ -46,7 +46,7 @@
"webpack-dev-server": "^2.11.1"
},
"dependencies": {
"@0xproject/react-docs": "^0.0.9",
"@0xproject/react-docs": "^0.0.10",
"basscss": "^8.0.3",
"lodash": "^4.17.4",
"material-ui": "^0.17.1",

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,13 @@
[
{
"timestamp": 1525466747,
"version": "0.0.10",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{
"timestamp": 1525428773,
"version": "0.0.9",

View File

@@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG
## v0.0.10 - _May 4, 2018_
* Dependencies updated
## v0.0.9 - _May 4, 2018_
* Dependencies updated

View File

@@ -1,6 +1,6 @@
{
"name": "@0xproject/react-docs",
"version": "0.0.9",
"version": "0.0.10",
"description": "React documentation component for rendering TypeDoc & Doxity generated JSON",
"main": "lib/index.js",
"types": "lib/index.d.ts",
@@ -31,12 +31,12 @@
"typescript": "2.7.1"
},
"dependencies": {
"@0xproject/react-shared": "^0.1.4",
"@0xproject/react-shared": "^0.1.5",
"@0xproject/utils": "^0.6.0",
"@types/lodash": "4.14.104",
"@types/material-ui": "0.18.0",
"@types/node": "^8.0.53",
"@types/react": "16.0.41",
"@types/react": "16.3.13",
"@types/react-dom": "^16.0.3",
"@types/react-scroll": "0.0.31",
"basscss": "^8.0.3",

View File

@@ -91,7 +91,7 @@ export class Documentation extends React.Component<DocumentationProps, Documenta
left: 0,
bottom: 0,
right: 0,
overflowZ: 'hidden',
overflowX: 'hidden',
overflowY: 'scroll',
minHeight: `calc(100vh - ${this.props.topBarHeight}px)`,
WebkitOverflowScrolling: 'touch',

View File

@@ -1,4 +1,13 @@
[
{
"timestamp": 1525466747,
"version": "0.1.5",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{
"timestamp": 1525428773,
"version": "0.1.4",

View File

@@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG
## v0.1.5 - _May 4, 2018_
* Dependencies updated
## v0.1.4 - _May 4, 2018_
* Dependencies updated

View File

@@ -1,6 +1,6 @@
{
"name": "@0xproject/react-shared",
"version": "0.1.4",
"version": "0.1.5",
"description": "0x shared react components",
"main": "lib/index.js",
"types": "lib/index.d.ts",
@@ -34,7 +34,7 @@
"@types/lodash": "4.14.104",
"@types/material-ui": "0.18.0",
"@types/node": "^8.0.53",
"@types/react": "16.0.41",
"@types/react": "16.3.13",
"@types/react-dom": "^16.0.3",
"@types/react-scroll": "0.0.31",
"basscss": "^8.0.3",

View File

@@ -1,4 +1,13 @@
[
{
"timestamp": 1525453812,
"version": "0.0.13",
"changes": [
{
"note": "Dependencies updated"
}
]
},
{
"timestamp": 1525428773,
"version": "0.0.12",

View File

@@ -5,6 +5,10 @@ Edit the package's CHANGELOG.json file only.
CHANGELOG
## v0.0.13 - _May 4, 2018_
* Dependencies updated
## v0.0.12 - _May 4, 2018_
* Dependencies updated

View File

@@ -1,6 +1,6 @@
{
"name": "@0xproject/sra-report",
"version": "0.0.12",
"version": "0.0.13",
"description": "Generate reports for standard relayer API compliance",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
@@ -28,7 +28,7 @@
},
"homepage": "https://github.com/0xProject/0x-monorepo/packages/sra-report/README.md",
"dependencies": {
"0x.js": "^0.37.0",
"0x.js": "^0.37.1",
"@0xproject/assert": "^0.2.8",
"@0xproject/connect": "^0.6.11",
"@0xproject/json-schemas": "^0.7.22",

View File

@@ -1,7 +1,7 @@
{
"private": true,
"name": "@0xproject/testnet-faucets",
"version": "1.0.27",
"version": "1.0.28",
"description": "A faucet micro-service that dispenses test ERC20 tokens or Ether",
"main": "server.js",
"scripts": {
@@ -15,7 +15,7 @@
"author": "Fabio Berger",
"license": "Apache-2.0",
"dependencies": {
"0x.js": "^0.37.0",
"0x.js": "^0.37.1",
"@0xproject/subproviders": "^0.10.0",
"@0xproject/typescript-typings": "^0.3.0",
"@0xproject/utils": "^0.6.0",

View File

@@ -1,6 +1,6 @@
{
"name": "@0xproject/website",
"version": "0.0.29",
"version": "0.0.31",
"private": true,
"description": "Website and 0x portal dapp",
"scripts": {
@@ -14,9 +14,9 @@
"author": "Fabio Berger",
"license": "Apache-2.0",
"dependencies": {
"0x.js": "^0.37.0",
"@0xproject/react-docs": "^0.0.9",
"@0xproject/react-shared": "^0.1.4",
"0x.js": "^0.37.1",
"@0xproject/react-docs": "^0.0.10",
"@0xproject/react-shared": "^0.1.5",
"@0xproject/subproviders": "^0.10.0",
"@0xproject/typescript-typings": "^0.3.0",
"@0xproject/utils": "^0.6.0",
@@ -60,7 +60,7 @@
"@types/material-ui": "0.18.0",
"@types/node": "^8.0.53",
"@types/query-string": "^5.1.0",
"@types/react": "16.0.41",
"@types/react": "16.3.13",
"@types/react-copy-to-clipboard": "^4.2.0",
"@types/react-dom": "^16.0.3",
"@types/react-redux": "^4.4.37",

1271
yarn.lock

File diff suppressed because it is too large Load Diff