From 2a5a673df08bed392a8ec4667f21790463e69b4c Mon Sep 17 00:00:00 2001 From: Yamboy1 Date: Sat, 30 May 2020 12:12:53 +1200 Subject: [PATCH] chore: update readme for v0.4.2 --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 42e84b5..be2e941 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Deno Structured Logging -[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/raw.githubusercontent.com/Yamboy1/deno-structured-logging/master/mod.ts) -[![deno.land](https://img.shields.io/badge/deno.land-0.4.1-blue)](https://deno.land/x/deno_structured_logging@0.4.1) +[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/raw.githubusercontent.com/Yamboy1/deno-structured-logging/0.4.2/mod.ts) +[![deno.land](https://img.shields.io/badge/deno.land-0.4.2-blue)](https://deno.land/x/deno_structured_logging@0.4.2) A better logger for deno, with support for structured logging. @@ -16,7 +16,7 @@ A better logger for deno, with support for structured logging. ## Simple Example ```ts -import { createLogger, consoleSink } from "https://deno.land/x/deno_structured_logging@0.4.1/mod.ts"; +import { createLogger, consoleSink } from "https://deno.land/x/deno_structured_logging@0.4.2/mod.ts"; const logger = createLogger().addSink(consoleSink()); @@ -38,7 +38,7 @@ import { fileSink, jsonFormat, textFormat, -} from "https://deno.land/x/deno_structured_logging@0.4.1/mod.ts"; +} from "https://deno.land/x/deno_structured_logging@0.4.2/mod.ts"; const logger = createLogger({ minimumLevel: LogLevel.INFO,