Skip to content

Commit

Permalink
update to use go-iiif/v3 v3.3.0; update vendor deps
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisaaronland committed Apr 22, 2020
1 parent 1c8588b commit ca39616
Show file tree
Hide file tree
Showing 491 changed files with 32,902 additions and 8,810 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ cli-tools:

docker-build:
docker build -f Dockerfile -t go-iiif-vips .

bump-version:
perl -i -p -e 's/github.com\/go-iiif\/go-iiif\/$(PREVIOUS)/github.com\/go-iiif\/go-iiif\/$(NEW)/g' go.mod
perl -i -p -e 's/github.com\/go-iiif\/go-iiif\/$(PREVIOUS)/github.com\/go-iiif\/go-iiif\/$(NEW)/g' README.md
find . -name '*.go' | xargs perl -i -p -e 's/github.com\/go-iiif\/go-iiif\/$(PREVIOUS)/github.com\/go-iiif\/go-iiif\/$(NEW)/g'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ package main
import (
"context"
_ "github.com/go-iiif/go-iiif-vips"
"github.com/go-iiif/go-iiif/tools"
"github.com/go-iiif/go-iiif/v3/tools"
)
func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/iiif-process/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"
_ "github.com/go-iiif/go-iiif-vips"
"github.com/go-iiif/go-iiif/tools"
"github.com/go-iiif/go-iiif/v3/tools"
"log"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/iiif-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"
_ "github.com/go-iiif/go-iiif-vips"
"github.com/go-iiif/go-iiif/tools"
"github.com/go-iiif/go-iiif/v3/tools"
"log"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/iiif-tile-seed/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"
_ "github.com/go-iiif/go-iiif-vips"
"github.com/go-iiif/go-iiif/tools"
"github.com/go-iiif/go-iiif/v3/tools"
"log"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/iiif-transform/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"context"
_ "github.com/go-iiif/go-iiif-vips"
"github.com/go-iiif/go-iiif/tools"
"github.com/go-iiif/go-iiif/v3/tools"
"log"
)

Expand Down
10 changes: 5 additions & 5 deletions driver.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package vips

import (
iiifcache "github.com/go-iiif/go-iiif/cache"
iiifconfig "github.com/go-iiif/go-iiif/config"
iiifdriver "github.com/go-iiif/go-iiif/driver"
iiifimage "github.com/go-iiif/go-iiif/image"
iiifsource "github.com/go-iiif/go-iiif/source"
iiifcache "github.com/go-iiif/go-iiif/v3/cache"
iiifconfig "github.com/go-iiif/go-iiif/v3/config"
iiifdriver "github.com/go-iiif/go-iiif/v3/driver"
iiifimage "github.com/go-iiif/go-iiif/v3/image"
iiifsource "github.com/go-iiif/go-iiif/v3/source"
"gopkg.in/h2non/bimg.v1"
_ "log"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ module github.com/go-iiif/go-iiif-vips
go 1.12

require (
github.com/go-iiif/go-iiif v0.0.0-20191115000000-58b1757bf030c64cf71706361ddde0d0d900fd47
github.com/go-iiif/go-iiif/v3 v3.3.0
gopkg.in/h2non/bimg.v1 v1.0.19
)
87 changes: 87 additions & 0 deletions go.sum

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions image.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (
"bytes"
"errors"
"fmt"
iiifconfig "github.com/go-iiif/go-iiif/config"
iiifimage "github.com/go-iiif/go-iiif/image"
iiifsource "github.com/go-iiif/go-iiif/source"
iiifconfig "github.com/go-iiif/go-iiif/v3/config"
iiifimage "github.com/go-iiif/go-iiif/v3/image"
iiifsource "github.com/go-iiif/go-iiif/v3/source"
"gopkg.in/h2non/bimg.v1"
"image"
"image/gif"
Expand Down
42 changes: 41 additions & 1 deletion vendor/github.com/aaronland/go-aws-session/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions vendor/github.com/aaronland/go-aws-session/go.mod

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions vendor/github.com/aaronland/go-aws-session/go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions vendor/github.com/aaronland/go-cloud-s3blob/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions vendor/github.com/aaronland/go-cloud-s3blob/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions vendor/github.com/aaronland/go-cloud-s3blob/go.mod

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

73 changes: 73 additions & 0 deletions vendor/github.com/aaronland/go-cloud-s3blob/s3blob.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ca39616

Please sign in to comment.