From 107c962821ec7c0956b12bb254f8afbe894dd3cc Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Wed, 10 Mar 2021 16:45:33 +0100 Subject: [PATCH] 0.1.1 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a6f27cc..48309b0 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Service Worker Cache API. Setting, getting, and deleting items in the cache: ```ts -import { inMemoryCache } from "https://deno.land/x/httpcache@0.1.0/in_memory.ts"; +import { inMemoryCache } from "https://deno.land/x/httpcache@0.1.1/in_memory.ts"; const cache = inMemoryCache(5); @@ -29,7 +29,7 @@ console.log(await cache.get(req)); // undefined And with redis: ```ts -import { redisCache } from "https://deno.land/x/httpcache@0.1.0/redis.ts"; +import { redisCache } from "https://deno.land/x/httpcache@0.1.1/redis.ts"; const cache = await redisCache("redis://127.0.0.1:6379");