Skip to content

Commit

Permalink
exporter: bump module import path to /v2
Browse files Browse the repository at this point in the history
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
  • Loading branch information
virtualtam committed Jun 12, 2023
1 parent e5b9911 commit bbd4d66
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .promu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
verbose: false

repository:
path: github.com/botify-labs/airbyte_exporter
path: github.com/botify-labs/airbyte_exporter/v2

go:
# Whenever the Go version is updated here, .github/workflows/ci.yaml should also be updated.
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/).

## [v2.0.1](https://github.com/botify-labs/airbyte_exporter/releases/tag/v2.0.1) - 2023-06-12

### Changed

- Breaking: update module imports to `/v2`

## [v2.0.0](https://github.com/botify-labs/airbyte_exporter/releases/tag/v2.0.0) - 2023-06-08

### Changed
Expand Down
2 changes: 1 addition & 1 deletion cmd/airbyte_exporter/collector.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/prometheus/client_golang/prometheus"
"github.com/rs/zerolog/log"

"github.com/botify-labs/airbyte_exporter/internal/airbyte"
"github.com/botify-labs/airbyte_exporter/v2/internal/airbyte"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/airbyte_exporter/exporter_command.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"github.com/spf13/cobra"
"github.com/virtualtam/venom"

"github.com/botify-labs/airbyte_exporter/internal/airbyte"
"github.com/botify-labs/airbyte_exporter/v2/internal/airbyte"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion cmd/airbyte_exporter/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/rs/zerolog/hlog"
"github.com/rs/zerolog/log"

"github.com/botify-labs/airbyte_exporter/internal/airbyte"
"github.com/botify-labs/airbyte_exporter/v2/internal/airbyte"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/botify-labs/airbyte_exporter
module github.com/botify-labs/airbyte_exporter/v2

go 1.20

Expand Down

0 comments on commit bbd4d66

Please sign in to comment.