From 1697e8cbaf273b15cff7af067c56d532a2adcf78 Mon Sep 17 00:00:00 2001 From: The Wizard Bear <42446683+TheWizardBear@users.noreply.github.com> Date: Thu, 26 Nov 2020 22:27:55 +0000 Subject: [PATCH] Version 2.1.2: fixed an incorrect dependency version --- README.md | 4 ++-- deps.ts | 2 +- egg.json | 2 +- version.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 485d11c..68013d6 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Currently only PNG and JPG images are supported. To install the CLI tool, run the following from the command line: ```shell -deno install --allow-read --allow-net --unstable --force https://x.nest.land/terminal_images@2.1.1/cli.ts +deno install --allow-read --allow-net --unstable --force https://x.nest.land/terminal_images@2.1.2/cli.ts ``` Then run @@ -52,7 +52,7 @@ _Note that the size might be different, as by default it adapts to the size of y Here is an example of how you can use it: ```ts -import { printImageString } from "https://x.nest.land/terminal_images@2.1.1/mod.ts"; +import { printImageString } from "https://x.nest.land/terminal_images@2.1.2/mod.ts"; printImageString({ diff --git a/deps.ts b/deps.ts index 2469a33..1595119 100644 --- a/deps.ts +++ b/deps.ts @@ -2,5 +2,5 @@ export { decode as decodeJpeg } from "https://deno.land/x/jpegts@1.1/mod.ts"; export { parse } from "https://deno.land/std@0.77.0/flags/mod.ts"; export { stringWidth } from "https://deno.land/x/gutenberg@0.1.5/unicode/width/mod.ts"; export * as colors from "https://deno.land/std@0.77.0/fmt/colors.ts"; -import unpng from "https://cdn.skypack.dev/upng-js@v2.1.1"; +import unpng from "https://cdn.skypack.dev/upng-js@v2.1.0"; export const decodePng = (unpng as any).decode; diff --git a/egg.json b/egg.json index d1ce4f7..af20ad7 100644 --- a/egg.json +++ b/egg.json @@ -4,7 +4,7 @@ "entry": "./mod.ts", "description": "A Deno module and CLI tool for displaying images in the terminal", "homepage": "https://github.com/TheWizardBear/terminal_images", - "version": "2.1.1", + "version": "2.1.2", "files": [ "./README.md", "./mod.ts", diff --git a/version.ts b/version.ts index eaecee8..cd3cff7 100644 --- a/version.ts +++ b/version.ts @@ -1 +1 @@ -export default "2.1.1"; +export default "2.1.2";