Skip to content

Commit

Permalink
chore: move into personal projects
Browse files Browse the repository at this point in the history
  • Loading branch information
dpeckett committed Apr 18, 2024
1 parent 4785959 commit abf3378
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Earthfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VERSION 0.7
FROM golang:1.21-bookworm
FROM golang:1.22-bookworm
WORKDIR /workspace

tidy:
Expand All @@ -8,7 +8,7 @@ tidy:
RUN go fmt ./...

lint:
FROM golangci/golangci-lint:v1.55.2
FROM golangci/golangci-lint:v1.57.2
WORKDIR /workspace
COPY . ./
RUN golangci-lint run --timeout 5m ./...
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A distributed synchronization library for Golang built on top of object storage.

Why? See my whitepaper: [All You Need Is S3](https://www.bucket-sailor.com/posts/all-you-need-is-s3/).
Why? See my whitepaper: [All You Need Is S3](https://www.dpeckett.com/posts/all-you-need-is-s3/).

## Features

Expand Down
4 changes: 2 additions & 2 deletions examples/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"os"
"time"

"github.com/bucket-sailor/objsync"
"github.com/bucket-sailor/objsync/provider/s3"
"github.com/dpeckett/objsync"
"github.com/dpeckett/objsync/provider/s3"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/bucket-sailor/objsync
module github.com/dpeckett/objsync

go 1.21
go 1.22

require (
cloud.google.com/go/storage v1.38.0
Expand Down
2 changes: 1 addition & 1 deletion main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func TestMain(m *testing.M) {

func startS3Server(ctx context.Context, logger *slog.Logger) (tc.Container, error) {
req := tc.ContainerRequest{
Image: "ghcr.io/bucket-sailor/picoceph:v0.2.1",
Image: "ghcr.io/dpeckett/picoceph:v0.5.0",
ExposedPorts: []string{"7480/tcp"},
WaitingFor: wait.ForListeningPort("7480/tcp"),
Privileged: true,
Expand Down
2 changes: 1 addition & 1 deletion mutex.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"time"

"github.com/avast/retry-go/v4"
"github.com/bucket-sailor/objsync/provider"
"github.com/dpeckett/objsync/provider"
"github.com/google/uuid"
)

Expand Down
4 changes: 2 additions & 2 deletions mutex_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import (
"testing"
"time"

"github.com/bucket-sailor/objsync"
"github.com/bucket-sailor/objsync/provider/s3"
"github.com/dpeckett/objsync"
"github.com/dpeckett/objsync/provider/s3"
"github.com/stretchr/testify/require"
"golang.org/x/sync/errgroup"
)
Expand Down
2 changes: 1 addition & 1 deletion provider/gcs/gcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
"strings"

"cloud.google.com/go/storage"
"github.com/bucket-sailor/objsync/provider"
"github.com/dpeckett/objsync/provider"
"google.golang.org/api/googleapi"
"google.golang.org/api/option"
)
Expand Down
2 changes: 1 addition & 1 deletion provider/s3/s3.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"github.com/aws/smithy-go"
smithymiddleware "github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
"github.com/bucket-sailor/objsync/provider"
"github.com/dpeckett/objsync/provider"
)

type Provider struct {
Expand Down

0 comments on commit abf3378

Please sign in to comment.