Skip to content

Commit

Permalink
Relase 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andersfugmann committed Aug 16, 2018
1 parent e8ef449 commit 535fc30
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[ ] Support bigstring (zero copy)

4.0.0: (unreleased)
4.0.0: Released 2018-08-16
[x] Support HEAD operation on objects.
[x] Change signature to use string for etag rather than
Caml.Digest.t for clearer documentation
Expand Down
14 changes: 6 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,12 @@
This library provides access to Amazon Simple Storage Solution (S3).

The following S3 operations are supported:
* Get (copy a file to s3)
* Put (Get a file from s3)
* Delete (Delete a file from s3)
* Multipart upload (Including copy)
* Multi delete
* Head suport
* Ls
* Streaming API
* Copying file to and from s3
* List files in S3 (from root)
* Delete single/multi object in S3
* HEAD operation on single objects
* Streaming transfer to and from aws
* Multi part upload (including s3 -> s3 copy)

The library also implements fetching credentials through IAM service.

Expand Down
5 changes: 4 additions & 1 deletion aws-s3-async.descr
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The library supports:
* Copying file to and from s3
* List files in S3 (from root)
* Delete single/multi object in S3
* Fetching credentials (though IAM)
* HEAD operation on single objects
* Streaming transfer to and from aws.
* Multi part upload (including s3 -> s3 copy)
* Fetching machine role/credentials (though IAM)

This library uses async for concurrency
6 changes: 4 additions & 2 deletions aws-s3-lwt.descr
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
Ocaml library for accessing Amazon S3 - Lwt version.


This library provides access to Amazon Simple Storage Solution (S3).
The library supports:
* Copying file to and from s3
* List files in S3 (from root)
* Delete single/multi object in S3
* Fetching credentials (though IAM)
* HEAD operation on single objects
* Streaming transfer to and from aws.
* Multi part upload (including s3 -> s3 copy)
* Fetching machine role/credentials (though IAM)

This library uses lwt for concurrency
5 changes: 4 additions & 1 deletion aws-s3.descr
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ The library supports:
* Copying file to and from s3
* List files in S3 (from root)
* Delete single/multi object in S3
* Fetching credentials (though IAM)
* HEAD operation on single objects
* Streaming transfer to and from aws.
* Multi part upload (including s3 -> s3 copy)
* Fetching machine role/credentials (though IAM)

The library supports both lwt and async concurrency models.
* For lwt, please install `aws-s3-lwt` package
Expand Down

0 comments on commit 535fc30

Please sign in to comment.