From 2105871843177fba6aaba4f2413b917c1d690970 Mon Sep 17 00:00:00 2001 From: Syfaro Date: Sun, 3 Jan 2016 18:12:03 -0600 Subject: [PATCH] Update package name --- README.md | 11 +++++++---- bot_test.go | 2 +- types_test.go | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 97311e1..ac86554 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Golang bindings for the Telegram Bot API -[![GoDoc](https://godoc.org/github.com/Syfaro/telegram-bot-api?status.svg)](http://godoc.org/github.com/Syfaro/telegram-bot-api) -[![Travis](https://travis-ci.org/Syfaro/telegram-bot-api.svg)](https://travis-ci.org/Syfaro/telegram-bot-api) +[![GoDoc](https://godoc.org/github.com/go-telegram-bot-api/telegram-bot-api?status.svg)](http://godoc.org/github.com/go-telegram-bot-api/telegram-bot-api) +[![Travis](https://travis-ci.org/go-telegram-bot-api/telegram-bot-api.svg)](https://travis-ci.org/go-telegram-bot-api/telegram-bot-api) All methods have been added, and all features should be available. If you want a feature that hasn't been added yet or something is broken, @@ -16,6 +16,9 @@ without any additional features. There are other projects for creating 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 build, +or use gopkg.in/telegram-bot-api.v1 for the current version. + ## Example This is a very simple bot that just displays any gotten updates, @@ -26,7 +29,7 @@ package main import ( "log" - "github.com/Syfaro/telegram-bot-api" + "gopkg.in/telegram-bot-api.v1" ) func main() { @@ -62,7 +65,7 @@ you may use a slightly different method. package main import ( - "github.com/Syfaro/telegram-bot-api" + "gopkg.in/telegram-bot-api.v1" "log" "net/http" ) diff --git a/bot_test.go b/bot_test.go index 0a3007c..e61c87c 100644 --- a/bot_test.go +++ b/bot_test.go @@ -1,7 +1,7 @@ package tgbotapi_test import ( - "github.com/Syfaro/telegram-bot-api" + "github.com/go-telegram-bot-api/telegram-bot-api" "io/ioutil" "log" "net/http" diff --git a/types_test.go b/types_test.go index 416f0cb..8e10e22 100644 --- a/types_test.go +++ b/types_test.go @@ -1,7 +1,7 @@ package tgbotapi_test import ( - "github.com/Syfaro/telegram-bot-api" + "github.com/go-telegram-bot-api/telegram-bot-api" "testing" "time" )