From 59f2d1bd31454bd9557502ab55a34aed1a75e7f1 Mon Sep 17 00:00:00 2001 From: Shivansh Vij Date: Fri, 1 Sep 2023 06:10:51 -0700 Subject: [PATCH] Bumping version to 0.1.4, fixing some naming bugs Signed-off-by: Shivansh Vij --- Cargo.toml | 2 +- index.ts | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 04a3251..0787a86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scale_signature_interfaces" -version = "0.1.3" +version = "0.1.4" edition = "2021" description = "The Scale Signature Interfaces for generating host and guest signatures across multiple languages" homepage = "https://scale.sh" diff --git a/index.ts b/index.ts index fa9fc0b..1de88fd 100644 --- a/index.ts +++ b/index.ts @@ -14,9 +14,9 @@ limitations under the License. */ -export type New = () => T; +export type New = () => T; -export interface Index { +export interface Signature { Read(b: Uint8Array): Error | undefined; Write(): Uint8Array; Error(err: Error): Uint8Array; diff --git a/package.json b/package.json index 08c2471..2729d07 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@loopholelabs/scale-signature-interfaces", - "version": "0.1.3", + "version": "0.1.4", "description": "The Scale Signature Interfaces for generating host and guest signatures across multiple languages", "homepage": "https://scale.sh", "repository": "https://github.com/loopholelabs/scale-signature-interfaces",