From 7e9f967b27a8d1587acd676b6186dae6340f58dc Mon Sep 17 00:00:00 2001 From: Sydney Erickson Date: Wed, 22 Mar 2017 11:53:54 -0700 Subject: [PATCH] Increment version number to 0.1.0 --- plugins/botutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/botutils.py b/plugins/botutils.py index 08848ab..6f483d5 100644 --- a/plugins/botutils.py +++ b/plugins/botutils.py @@ -70,7 +70,7 @@ def onCommand(message_in): repo = git.Repo(search_parent_directories=True) sha = repo.head.object.hexsha embed = discord.Embed(color=discord.Color.red()) - embed.set_author(name='Project StarBot v0.0.5-{}'.format(sha[:7]), url='https://github.com/1byte2bytes/Starbot/', icon_url='https://pbs.twimg.com/profile_images/616309728688238592/pBeeJQDQ.png') + embed.set_author(name='Project StarBot v0.1.0-{}'.format(sha[:7]), url='https://github.com/1byte2bytes/Starbot/', icon_url='https://pbs.twimg.com/profile_images/616309728688238592/pBeeJQDQ.png') embed.set_footer(text='Created by CorpNewt and Sydney Erickson') return message.message(embed=embed)