Skip to content

Commit

Permalink
rename org to debezium
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaTP committed Jan 10, 2025
1 parent c93dcb0 commit c5aaaaa
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ This library can be used to write
Include the library with Go get:

```bash
go get github.com/andreaTP/debezium-smt-go-pdk
go get github.com/debezium/debezium-smt-go-pdk
```

## Reference Documentation

You can find the reference documentation for this library on
[pkg.go.dev](https://pkg.go.dev/github.com/andreaTP/debezium-smt-go-pdk).
[pkg.go.dev](https://pkg.go.dev/github.com/debezium/debezium-smt-go-pdk).

## Getting Started

Expand All @@ -24,7 +24,7 @@ A simple Debezium SMT written in Go should include a `process` function exported
package main

import (
"github.com/andreaTP/debezium-smt-go-pdk"
"github.com/debezium/debezium-smt-go-pdk"
)

//export process
Expand Down
2 changes: 1 addition & 1 deletion debezium.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"strconv"
"unsafe"

"github.com/andreaTP/debezium-smt-go-pdk/internal"
"github.com/debezium/debezium-smt-go-pdk/internal"
)

// access a nested field in the record data structure provided by Debezium
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/andreaTP/debezium-smt-go-pdk
module github.com/debezium/debezium-smt-go-pdk

go 1.22.7
4 changes: 2 additions & 2 deletions testdata-project/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ module debezium-smt-go-pdk-testdata

go 1.22.7

replace github.com/andreaTP/debezium-smt-go-pdk => ../
replace github.com/debezium/debezium-smt-go-pdk => ../

require github.com/andreaTP/debezium-smt-go-pdk v0.0.0-00010101000000-000000000000
require github.com/debezium/debezium-smt-go-pdk v0.0.0-00010101000000-000000000000
2 changes: 1 addition & 1 deletion testdata-project/test1.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/andreaTP/debezium-smt-go-pdk"
"github.com/debezium/debezium-smt-go-pdk"
)

//export process
Expand Down
2 changes: 1 addition & 1 deletion testdata-project/test2.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/andreaTP/debezium-smt-go-pdk"
"github.com/debezium/debezium-smt-go-pdk"
)

//export process
Expand Down
2 changes: 1 addition & 1 deletion testdata-project/test3.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/andreaTP/debezium-smt-go-pdk"
"github.com/debezium/debezium-smt-go-pdk"
)

//export process
Expand Down
2 changes: 1 addition & 1 deletion testdata-project/test4.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/andreaTP/debezium-smt-go-pdk"
"github.com/debezium/debezium-smt-go-pdk"
)

//export process
Expand Down

0 comments on commit c5aaaaa

Please sign in to comment.