Skip to content

Commit f22fa4c

Browse files
committed
bump version 2.0.0
1 parent e19d606 commit f22fa4c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
go-syslog [![Build Status](https://travis-ci.org/mcuadros/go-syslog.png?branch=master)](https://travis-ci.org/mcuadros/go-syslog) [![GoDoc](http://godoc.org/github.com/mcuadros/go-syslog?status.png)](http://godoc.org/github.com/mcuadros/go-syslog)
1+
go-syslog [![Build Status](https://travis-ci.org/mcuadros/go-syslog.png?branch=master)](https://travis-ci.org/mcuadros/go-syslog) [![GoDoc](http://godoc.org/github.com/mcuadros/go-syslog?status.png)](http://godoc.org/github.com/mcuadros/go-syslog)[![GitHub release](https://img.shields.io/github/release/mcuadros/go-syslog.svg?style=plastic)](https://github.com/mcuadros/go-syslog/releases)
22
==============================
33

44
Syslog server library for go, build easy your custom syslog server over UDP, TCP or Unix sockets using RFC3164, RFC6587 or RFC5424
@@ -9,7 +9,7 @@ Installation
99
The recommended way to install go-syslog
1010

1111
```
12-
go get github.com/mcuadros/go-syslog
12+
go get gopkg.in/mcuadros/go-syslog.v2
1313
```
1414

1515
Examples
@@ -18,10 +18,10 @@ Examples
1818
How import the package
1919

2020
```go
21-
import "github.com/mcuadros/go-syslog"
21+
import "gopkg.in/mcuadros/go-syslog.v2"
2222
```
2323

24-
Example of a basic syslog [UDP server](example/basic_udp.go):
24+
Example of a basic syslog [UDP server](example/basic_udp.go):
2525

2626
```go
2727
channel := make(syslog.LogPartsChannel)

example/basic_udp.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"fmt"
55

6-
"github.com/mcuadros/go-syslog"
6+
"gopkg.in/mcuadros/go-syslog.v2"
77
)
88

99
func main() {

server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"sync"
88
"time"
99

10-
"github.com/mcuadros/go-syslog/format"
10+
"gopkg.in/mcuadros/go-syslog.v2/format"
1111
)
1212

1313
var (

0 commit comments

Comments
 (0)