From da0f118fe85e477038b56fe51f2866240e6dbb16 Mon Sep 17 00:00:00 2001 From: Oleg Sklyar Date: Thu, 31 Dec 2015 02:17:45 +0100 Subject: [PATCH] Added version information --- README.md | 13 ++++++++----- init.go | 2 ++ 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1838f5f..0387fd4 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,7 @@ -# Long polling library for the Go language - [![Build status][buildimage]][travis] [![Coverage][codecovimage]][codecov] [![API documentation][godocimage]][docs] - go-longpoll::test - ok github.com/ventu-io/go-longpoll 6.886s coverage: 100.0% of statements +# Long polling library for the Go language The [Go][go] library `go-longpoll` (package `longpoll`) provides an implementation of the long polling mechanism of the [PubSub][pubsub] pattern. Although the primary purpose of the @@ -138,7 +135,7 @@ A comprehensive example can be run from the demo [repository][demo] via ./go-pubsub-examples 2 -### Performance +## Performance Using a benchmark from the demo [repository][demo] a throughput test can be run using the command below. @@ -149,6 +146,12 @@ implemented algorithm publisheds and concurrently receives 1 million units of da ./go-pubsub-examples 4 +## Changelog + +#### 31 Dec 2015: Version 1.0 + +* First release of the API + ## License Redistribution and use in source and binary forms, with or without diff --git a/init.go b/init.go index e00aeca..619e687 100644 --- a/init.go +++ b/init.go @@ -10,3 +10,5 @@ const ( no int32 = iota yes ) + +const Version = 1.0