diff --git a/README.md b/README.md index fb18eee..9296a93 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Supported functionality: List data files from a public data set on Amazon S3: ```typescript -import { S3Client } from "https://deno.land/x/s3_lite_client@0.3.0/mod.ts"; +import { S3Client } from "https://deno.land/x/s3_lite_client@0.5.0/mod.ts"; const s3client = new S3Client({ endPoint: "s3.us-east-1.amazonaws.com", @@ -54,7 +54,7 @@ for await (const obj of s3client.listObjects({ prefix: "data/concepts/" })) { Upload a file to a local MinIO server: ```typescript -import { S3Client } from "https://deno.land/x/s3_lite_client@0.3.0/mod.ts"; +import { S3Client } from "https://deno.land/x/s3_lite_client@0.5.0/mod.ts"; // Connecting to a local MinIO server: const s3client = new S3Client({