From e7b23a187a44e7c2cac2c986a130fa080e5af962 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Rodr=C3=ADguez?= Date: Thu, 6 Feb 2020 12:35:09 -0300 Subject: [PATCH] Fix version tag for bigint codec --- src/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index ab6990a41..32bfdd869 100644 --- a/src/index.ts +++ b/src/index.ts @@ -364,7 +364,7 @@ export interface NumberC extends NumberType {} export const number: NumberC = new NumberType() /** - * @since 2.0.7 + * @since 2.1.0 */ export class BigIntType extends Type { readonly _tag: 'BigIntType' = 'BigIntType' @@ -380,12 +380,12 @@ export class BigIntType extends Type { } /** - * @since 2.0.7 + * @since 2.1.0 */ export interface BigIntC extends BigIntType {} /** - * @since 2.0.7 + * @since 2.1.0 */ export const bigint: BigIntC = new BigIntType()