Skip to content

Commit

Permalink
Version 0.5.0 - Adds sessionToken support, fix non-ascii chars in URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Mar 10, 2023
1 parent d4a6a83 commit 12a5dd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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({
Expand Down

0 comments on commit 12a5dd1

Please sign in to comment.