Skip to content

Commit

Permalink
Merge pull request #319 from saschagrunert/version-bump
Browse files Browse the repository at this point in the history
Bump version to v22
  • Loading branch information
Luca Bruno authored Nov 11, 2019
2 parents 5a0db84 + 6378e7f commit 2d78030
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/activation/activation.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"fmt"
"os"

"github.com/coreos/go-systemd/v21/activation"
"github.com/coreos/go-systemd/v22/activation"
)

func fixListenPid() {
Expand Down
2 changes: 1 addition & 1 deletion examples/activation/httpserver/httpserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
"io"
"net/http"

"github.com/coreos/go-systemd/v21/activation"
"github.com/coreos/go-systemd/v22/activation"
)

func HelloServer(w http.ResponseWriter, req *http.Request) {
Expand Down
2 changes: 1 addition & 1 deletion examples/activation/listen.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"fmt"
"os"

"github.com/coreos/go-systemd/v21/activation"
"github.com/coreos/go-systemd/v22/activation"
)

func fixListenPid() {
Expand Down
2 changes: 1 addition & 1 deletion examples/activation/udpconn.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"net"
"os"

"github.com/coreos/go-systemd/v21/activation"
"github.com/coreos/go-systemd/v22/activation"
)

func fixListenPid() {
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/coreos/go-systemd/v21
module github.com/coreos/go-systemd/v22

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion machine1/dbus.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (

"github.com/godbus/dbus/v5"

sd_dbus "github.com/coreos/go-systemd/v21/dbus"
sd_dbus "github.com/coreos/go-systemd/v22/dbus"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion machine1/dbus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"testing"
"time"

sd_dbus "github.com/coreos/go-systemd/v21/dbus"
sd_dbus "github.com/coreos/go-systemd/v22/dbus"
"github.com/godbus/dbus/v5"
)

Expand Down
2 changes: 1 addition & 1 deletion sdjournal/functions.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
package sdjournal

import (
"github.com/coreos/go-systemd/v21/internal/dlopen"
"github.com/coreos/go-systemd/v22/internal/dlopen"
"sync"
"unsafe"
)
Expand Down
2 changes: 1 addition & 1 deletion sdjournal/journal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"testing"
"time"

"github.com/coreos/go-systemd/v21/journal"
"github.com/coreos/go-systemd/v22/journal"
)

func TestJournalFollow(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion util/util_cgo.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ import (
"syscall"
"unsafe"

"github.com/coreos/go-systemd/v21/internal/dlopen"
"github.com/coreos/go-systemd/v22/internal/dlopen"
)

var libsystemdNames = []string{
Expand Down

0 comments on commit 2d78030

Please sign in to comment.