You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: MAINTAINERS.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@
5
5
Please go through this link [Maintainer Responsibility](https://gist.github.com/abperiasamy/f4d9b31d3186bbd26522)
6
6
7
7
### Making new releases
8
-
Tag and sign your release commit, additionally this step requires you to have access to Minio's trusted private key.
8
+
Tag and sign your release commit, additionally this step requires you to have access to MinIO's trusted private key.
9
9
```sh
10
10
$ export GNUPGHOME=/media/${USER}/minio/trusted
11
11
$ git tag -s 4.0.0
@@ -23,11 +23,11 @@ $ grep libraryVersion api.go
23
23
24
24
Commit your changes
25
25
```
26
-
$ git commit -a -m "Update version for next release" --author "Minio Trusted <trusted@minio.io>"
26
+
$ git commit -a -m "Update version for next release" --author "MinIO Trusted <trusted@min.io>"
27
27
```
28
28
29
29
### Announce
30
-
Announce new release by adding release notes at https://github.com/minio/minio-go/releases from `trusted@minio.io` account. Release notes requires two sections `highlights` and `changelog`. Highlights is a bulleted list of salient features in this release and Changelog contains list of all commits since the last release.
30
+
Announce new release by adding release notes at https://github.com/minio/minio-go/releases from `trusted@min.io` account. Release notes requires two sections `highlights` and `changelog`. Highlights is a bulleted list of salient features in this release and Changelog contains list of all commits since the last release.
Copy file name to clipboardexpand all lines: Makefile
+2-2
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,10 @@ all: checks
3
3
checks:
4
4
@go get -t ./...
5
5
@go vet ./...
6
-
@SERVER_ENDPOINT=play.minio.io:9000 ACCESS_KEY=Q3AM3UQ867SPQQA43P2F SECRET_KEY=zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG ENABLE_HTTPS=1 MINT_MODE=full go test -race -v ./...
6
+
@SERVER_ENDPOINT=play.min.io:9000 ACCESS_KEY=Q3AM3UQ867SPQQA43P2F SECRET_KEY=zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG ENABLE_HTTPS=1 MINT_MODE=full go test -race -v ./...
7
7
@go get github.com/dustin/go-humanize/...
8
8
@go get github.com/sirupsen/logrus/...
9
-
@SERVER_ENDPOINT=play.minio.io:9000 ACCESS_KEY=Q3AM3UQ867SPQQA43P2F SECRET_KEY=zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG ENABLE_HTTPS=1 MINT_MODE=full go run functional_tests.go
9
+
@SERVER_ENDPOINT=play.min.io:9000 ACCESS_KEY=Q3AM3UQ867SPQQA43P2F SECRET_KEY=zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG ENABLE_HTTPS=1 MINT_MODE=full go run functional_tests.go
10
10
@mkdir -p /tmp/examples &&foriin$(echo examples/s3/*);do go build -o /tmp/examples/$(basename ${i:0:-3})${i};done
Copy file name to clipboardexpand all lines: README.md
+49-49
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
-
# Minio Go Client SDK for Amazon S3 Compatible Cloud Storage [](https://slack.minio.io)[](https://sourcegraph.com/github.com/minio/minio-go?badge)[](https://github.com/minio/minio-go/blob/master/LICENSE)
1
+
# MinIO Go Client SDK for Amazon S3 Compatible Cloud Storage [](https://slack.min.io)[](https://sourcegraph.com/github.com/minio/minio-go?badge)[](https://github.com/minio/minio-go/blob/master/LICENSE)
2
2
3
-
The Minio Go Client SDK provides simple APIs to access any Amazon S3 compatible object storage.
3
+
The MinIO Go Client SDK provides simple APIs to access any Amazon S3 compatible object storage.
4
4
5
-
This quickstart guide will show you how to install the Minio client SDK, connect to Minio, and provide a walkthrough for a simple file uploader. For a complete list of APIs and examples, please take a look at the [Go Client API Reference](https://docs.minio.io/docs/golang-client-api-reference).
5
+
This quickstart guide will show you how to install the MinIO client SDK, connect to MinIO, and provide a walkthrough for a simple file uploader. For a complete list of APIs and examples, please take a look at the [Go Client API Reference](https://docs.min.io/docs/golang-client-api-reference).
6
6
7
-
This document assumes that you have a working [Go development environment](https://docs.minio.io/docs/how-to-install-golang).
7
+
This document assumes that you have a working [Go development environment](https://docs.min.io/docs/how-to-install-golang).
8
8
9
9
## Download from Github
10
10
```sh
11
11
go get -u github.com/minio/minio-go
12
12
```
13
13
14
-
## Initialize Minio Client
15
-
Minio client requires the following four parameters specified to connect to an Amazon S3 compatible object storage.
14
+
## Initialize MinIO Client
15
+
MinIO client requires the following four parameters specified to connect to an Amazon S3 compatible object storage.
This example program connects to an object storage server, creates a bucket and uploads a file to the bucket.
51
51
52
-
We will use the Minio server running at [https://play.minio.io:9000](https://play.minio.io:9000) in this example. Feel free to use this service for testing and development. Access credentials shown in this example are open to the public.
52
+
We will use the MinIO server running at [https://play.min.io:9000](https://play.min.io:9000) in this example. Feel free to use this service for testing and development. Access credentials shown in this example are open to the public.
0 commit comments