Skip to content

Commit

Permalink
Version 0.6.1 - bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Jun 26, 2023
1 parent ce4883f commit 5d3cba8
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].0/mod.ts";
import { S3Client } from "https://deno.land/x/[email protected].1/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].0/mod.ts";
import { S3Client } from "https://deno.land/x/[email protected].1/mod.ts";

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

0 comments on commit 5d3cba8

Please sign in to comment.