Skip to content

Commit

Permalink
bump version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mcuadros committed Feb 22, 2015
1 parent e19d606 commit f22fa4c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
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)
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)
==============================

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

```
go get github.com/mcuadros/go-syslog
go get gopkg.in/mcuadros/go-syslog.v2
```

Examples
Expand All @@ -18,10 +18,10 @@ Examples
How import the package

```go
import "github.com/mcuadros/go-syslog"
import "gopkg.in/mcuadros/go-syslog.v2"
```

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

```go
channel := make(syslog.LogPartsChannel)
Expand Down
2 changes: 1 addition & 1 deletion example/basic_udp.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"fmt"

"github.com/mcuadros/go-syslog"
"gopkg.in/mcuadros/go-syslog.v2"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sync"
"time"

"github.com/mcuadros/go-syslog/format"
"gopkg.in/mcuadros/go-syslog.v2/format"
)

var (
Expand Down

0 comments on commit f22fa4c

Please sign in to comment.