diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index e4b50a88e..3dbe1b918 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -1,5 +1,5 @@ { - "ImportPath": "github.com/minios/minios", + "ImportPath": "github.com/minio-io/minio", "GoVersion": "go1.3.3", "Packages": [ "./..." diff --git a/Makefile b/Makefile index a418f66f6..2001365a4 100644 --- a/Makefile +++ b/Makefile @@ -4,11 +4,11 @@ all: test install test: mkdir -p cover - godep go test -race -coverprofile=cover/cover.out github.com/minios/minios - godep go test -race github.com/minios/minios/minio + godep go test -race -coverprofile=cover/cover.out github.com/minio-io/minio + godep go test -race github.com/minio-io/minio/minio install: - godep go install -race github.com/minios/minios/minio + godep go install -race github.com/minio-io/minio/minio save: godep save ./... diff --git a/NOTICE b/NOTICE index 77c177f7d..080edd126 100644 --- a/NOTICE +++ b/NOTICE @@ -1,10 +1,10 @@ Mini Object Storage -Copyright 2014 Minios, Inc. +Copyright 2014 Minio, Inc. -This product includes software developed at Minios, Inc. -(http://minios.io/). +This product includes software developed at Minio, Inc. +(http://minio.io/). -The Minios project contains unmodified subcomponents under the contrib +The Minio project contains unmodified subcomponents under the contrib folder with separate copyright notices and license terms. Your use of the source code for the these subcomponents is subject to the terms and conditions of the following licenses. diff --git a/docs/git/workflow.md b/docs/git/workflow.md index 05c0bbceb..3cfc6d062 100644 --- a/docs/git/workflow.md +++ b/docs/git/workflow.md @@ -31,7 +31,7 @@ Assuming no conflict, push to your personal fork. ```sh git push myrepo new_feature_branch:new_feature_branch -# Visit https://github.com/minios/minios and create a new pull request +# Visit https://github.com/minio-io/minio and create a new pull request from your branch. ``` diff --git a/docs/internal/INFRA b/docs/internal/INFRA index b823567d9..392a0068e 100644 --- a/docs/internal/INFRA +++ b/docs/internal/INFRA @@ -1,9 +1,9 @@ -- Google groups development (minios-dev) -- Github groups (https://github.com/minios) -- IRC users #minios +- Google groups development (minio-dev) +- Github groups (https://github.com/minio-io) +- IRC users #minio - Support (zendesk.com) - Community Q/A (stackoverflow.com) - https://github.com/justinwalsh/daux.io (Document generator) or 'metalsmith.io' - Continous integration - (https://drone.io/, https://codeship.io, http://wercker.com/, https://coveralls.io/) -- Web UI - polymer project \ No newline at end of file +- Web UI - polymer project diff --git a/minio/main.go b/minio/main.go index 3e1c9609a..0c847a60a 100644 --- a/minio/main.go +++ b/minio/main.go @@ -3,7 +3,7 @@ package main import ( "github.com/codegangsta/cli" "github.com/gorilla/mux" - "github.com/minios/minios" + "github.com/minio-io/minio" "log" "net/http" "os"