Skip to content

Commit

Permalink
chore(release): 1.13.20 [skip ci]
Browse files Browse the repository at this point in the history
## [1.13.20](1.13.19...1.13.20) (2020-10-29)

### Bug Fixes

* use updated json-schema-tools meta-schema ([f79b28e](f79b28e))
  • Loading branch information
openrpc-bastion authored and semantic-release-bot committed Oct 29, 2020
1 parent 8033a8f commit 1b72ef2
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.13.20](https://github.com/open-rpc/meta-schema/compare/1.13.19...1.13.20) (2020-10-29)


### Bug Fixes

* use updated json-schema-tools meta-schema ([f79b28e](https://github.com/open-rpc/meta-schema/commit/f79b28e1fa7b2aaa17752e9b9727334bb450dd1d))

## [1.13.19](https://github.com/open-rpc/meta-schema/compare/1.13.18...1.13.19) (2020-10-29)


Expand Down
3 changes: 1 addition & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,7 @@ export type ExclusiveMaximum = number;
export type Minimum = number;
export type ExclusiveMinimum = number;
export type NonNegativeInteger = number;
export type DefaultZero = any;
export type NonNegativeIntegerDefaultZero = NonNegativeInteger & DefaultZero;
export type NonNegativeIntegerDefaultZero = number;
export type Pattern = string;
export type SchemaArray = JSONSchema[];
/**
Expand Down
2 changes: 1 addition & 1 deletion index.js

Large diffs are not rendered by default.

4 changes: 1 addition & 3 deletions index.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,7 @@ class MethodObjectParamStructure(Enum):

NonNegativeInteger = NewType("NonNegativeInteger", int)

DefaultZero = NewType("DefaultZero", Any)

NonNegativeIntegerDefaultZero = NewType("NonNegativeIntegerDefaultZero", Mapping[Any, Any])
NonNegativeIntegerDefaultZero = NewType("NonNegativeIntegerDefaultZero", int)

Pattern = NewType("Pattern", str)

Expand Down
3 changes: 1 addition & 2 deletions index.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,7 @@ pub type ExclusiveMaximum = f64;
pub type Minimum = f64;
pub type ExclusiveMinimum = f64;
pub type NonNegativeInteger = i64;
pub type DefaultZero = serde_json::Value;
pub type NonNegativeIntegerDefaultZero = HashMap<String, Option<serde_json::Value>>;
pub type NonNegativeIntegerDefaultZero = i64;
pub type Pattern = String;
pub type SchemaArray = Vec<JSONSchema>;
#[derive(Serialize, Deserialize)]
Expand Down
5 changes: 2 additions & 3 deletions openrpc_document.go

Large diffs are not rendered by default.

0 comments on commit 1b72ef2

Please sign in to comment.