From 05e20ccb641c8c7a56ea69e02114bd52fe1fbb7b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Mart=C3=ADnez?= Date: Wed, 16 Oct 2019 10:51:27 -0300 Subject: [PATCH] fix version --- README.md | 2 +- mod.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7cb9910..8faee31 100644 --- a/README.md +++ b/README.md @@ -120,5 +120,5 @@ bigfloat.string({ coefficient: BigInt(522299), exponent: -4 }); // "53.23" ``` # Changelog -0.0.1 +1.0.0 - First version \ No newline at end of file diff --git a/mod.ts b/mod.ts index 03370c9..c1a0be8 100644 --- a/mod.ts +++ b/mod.ts @@ -1,4 +1,4 @@ -// bigfloat-deno v0.0.1 +// bigfloat-deno v1.0.0 import * as arithmetic from "./lib/arithmetic.ts"; import { set_precision } from "./lib/constants.ts"; import * as constructors from "./lib/constructors.ts";