From baf170548c7ebc221cd82c3d1a121d8b218786ac Mon Sep 17 00:00:00 2001 From: Syfaro Date: Mon, 4 Jan 2016 14:55:04 -0600 Subject: [PATCH] Update README for v2 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9ca6f6d..2d0fce8 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ something with plugins and command handlers without having to design all that yourself. Use `github.com/go-telegram-bot-api/telegram-bot-api` for the latest -version, or use `gopkg.in/telegram-bot-api.v1` for the stable build. +version, or use `gopkg.in/telegram-bot-api.v2` for the stable build. ## Example @@ -29,7 +29,7 @@ package main import ( "log" - "gopkg.in/telegram-bot-api.v1" + "gopkg.in/telegram-bot-api.v2" ) func main() { @@ -65,7 +65,7 @@ you may use a slightly different method. package main import ( - "gopkg.in/telegram-bot-api.v1" + "gopkg.in/telegram-bot-api.v2" "log" "net/http" )