Skip to content

Commit 2d78030

Browse files
author
Luca Bruno
authored
Merge pull request #319 from saschagrunert/version-bump
Bump version to v22
2 parents 5a0db84 + 6378e7f commit 2d78030

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

examples/activation/activation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"fmt"
2222
"os"
2323

24-
"github.com/coreos/go-systemd/v21/activation"
24+
"github.com/coreos/go-systemd/v22/activation"
2525
)
2626

2727
func fixListenPid() {

examples/activation/httpserver/httpserver.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
"io"
2121
"net/http"
2222

23-
"github.com/coreos/go-systemd/v21/activation"
23+
"github.com/coreos/go-systemd/v22/activation"
2424
)
2525

2626
func HelloServer(w http.ResponseWriter, req *http.Request) {

examples/activation/listen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"fmt"
2222
"os"
2323

24-
"github.com/coreos/go-systemd/v21/activation"
24+
"github.com/coreos/go-systemd/v22/activation"
2525
)
2626

2727
func fixListenPid() {

examples/activation/udpconn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"net"
2323
"os"
2424

25-
"github.com/coreos/go-systemd/v21/activation"
25+
"github.com/coreos/go-systemd/v22/activation"
2626
)
2727

2828
func fixListenPid() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/coreos/go-systemd/v21
1+
module github.com/coreos/go-systemd/v22
22

33
go 1.12
44

machine1/dbus.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525

2626
"github.com/godbus/dbus/v5"
2727

28-
sd_dbus "github.com/coreos/go-systemd/v21/dbus"
28+
sd_dbus "github.com/coreos/go-systemd/v22/dbus"
2929
)
3030

3131
const (

machine1/dbus_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"testing"
2626
"time"
2727

28-
sd_dbus "github.com/coreos/go-systemd/v21/dbus"
28+
sd_dbus "github.com/coreos/go-systemd/v22/dbus"
2929
"github.com/godbus/dbus/v5"
3030
)
3131

sdjournal/functions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
package sdjournal
1717

1818
import (
19-
"github.com/coreos/go-systemd/v21/internal/dlopen"
19+
"github.com/coreos/go-systemd/v22/internal/dlopen"
2020
"sync"
2121
"unsafe"
2222
)

sdjournal/journal_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import (
2727
"testing"
2828
"time"
2929

30-
"github.com/coreos/go-systemd/v21/journal"
30+
"github.com/coreos/go-systemd/v22/journal"
3131
)
3232

3333
func TestJournalFollow(t *testing.T) {

util/util_cgo.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ import (
5858
"syscall"
5959
"unsafe"
6060

61-
"github.com/coreos/go-systemd/v21/internal/dlopen"
61+
"github.com/coreos/go-systemd/v22/internal/dlopen"
6262
)
6363

6464
var libsystemdNames = []string{

0 commit comments

Comments
 (0)