Skip to content

Commit fec0b15

Browse files
authored
Version 3 (joeig#31)
1 parent 0ad1fc8 commit fec0b15

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This community project provides bindings for the currently latest version of Pow
55
[![Build Status](https://github.com/joeig/go-powerdns/workflows/Tests/badge.svg)](https://github.com/joeig/go-powerdns/actions)
66
[![Go Report Card](https://goreportcard.com/badge/github.com/joeig/go-powerdns)](https://goreportcard.com/report/github.com/joeig/go-powerdns)
77
[![Coverage Status](https://coveralls.io/repos/github/joeig/go-powerdns/badge.svg?branch=master)](https://coveralls.io/github/joeig/go-powerdns?branch=master)
8-
[![PkgGoDev](https://pkg.go.dev/badge/github.com/joeig/go-powerdns/v2)](https://pkg.go.dev/github.com/joeig/go-powerdns/v2)
8+
[![PkgGoDev](https://pkg.go.dev/badge/github.com/joeig/go-powerdns/v3)](https://pkg.go.dev/github.com/joeig/go-powerdns/v3)
99

1010
## Features
1111

@@ -14,7 +14,7 @@ This community project provides bindings for the currently latest version of Pow
1414
* Server statistics gathering
1515
* DNSSEC handling
1616

17-
For more features, consult our [documentation](https://pkg.go.dev/github.com/joeig/go-powerdns/v2).
17+
For more features, consult our [documentation](https://pkg.go.dev/github.com/joeig/go-powerdns/v3).
1818

1919
## Usage
2020

@@ -23,7 +23,7 @@ For more features, consult our [documentation](https://pkg.go.dev/github.com/joe
2323
```go
2424
import (
2525
"context"
26-
"github.com/joeig/go-powerdns/v2"
26+
"github.com/joeig/go-powerdns/v3"
2727
)
2828

2929
pdns := powerdns.NewClient("http://localhost:80", "localhost", map[string]string{"X-API-Key": "apipw"}, nil)

examples/zone-operations/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"math/rand"
99
"time"
1010

11-
"github.com/joeig/go-powerdns/v2"
11+
"github.com/joeig/go-powerdns/v3"
1212
)
1313

1414
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/joeig/go-powerdns/v2
1+
module github.com/joeig/go-powerdns/v3
22

33
go 1.17
44

0 commit comments

Comments
 (0)