Skip to content

Commit

Permalink
Version 0.7.0 - adds bucket operations
Browse files Browse the repository at this point in the history
  • Loading branch information
bradenmacdonald committed Feb 9, 2024
1 parent b239dbb commit 7ae5edd
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 @@ -39,7 +39,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.6.2/mod.ts";
import { S3Client } from "https://deno.land/x/s3_lite_client@0.7.0/mod.ts";

const s3client = new S3Client({
endPoint: "s3.us-east-1.amazonaws.com",
Expand Down Expand Up @@ -75,7 +75,7 @@ const keys = await Array.fromAsync(s3client.listObjects(), (entry) => entry.key)
Uploading and downloading a file using a local MinIO server:

```typescript
import { S3Client } from "https://deno.land/x/s3_lite_client@0.6.2/mod.ts";
import { S3Client } from "https://deno.land/x/s3_lite_client@0.7.0/mod.ts";

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

0 comments on commit 7ae5edd

Please sign in to comment.