Skip to content

Commit

Permalink
Version 0.6.2 - add metadata to get*Object, bumps deno std lib
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Oct 13, 2023
1 parent 523794f commit 5a87fa0
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/[email protected].1/mod.ts";
import { S3Client } from "https://deno.land/x/[email protected].2/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/[email protected].1/mod.ts";
import { S3Client } from "https://deno.land/x/[email protected].2/mod.ts";

// Connecting to a local MinIO server:
const s3client = new S3Client({
Expand Down

0 comments on commit 5a87fa0

Please sign in to comment.