From 876340328e29ae1bb79d18ca8a70c6f92504185c Mon Sep 17 00:00:00 2001 From: Luke <55749227+Luke-zhang-04@users.noreply.github.com> Date: Wed, 1 Apr 2020 12:31:40 -0400 Subject: [PATCH] v1.1.3 --- CanvasPlus/canvasplus.py | 4 ++-- readme.md | 4 ++-- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CanvasPlus/canvasplus.py b/CanvasPlus/canvasplus.py index ffe3c5b..5c62c83 100644 --- a/CanvasPlus/canvasplus.py +++ b/CanvasPlus/canvasplus.py @@ -1,6 +1,6 @@ ''' Luke-zhang-04 -Canvas Plus v1.1.2 (/~https://github.com/Luke-zhang-04/CanvasPlus) +Canvas Plus v1.1.3 (/~https://github.com/Luke-zhang-04/CanvasPlus) Copyright (C) 2020 Luke-zhang-04 This program is free software: you can redistribute it and/or modify @@ -362,7 +362,7 @@ def _test(): #create an entry and set it's default value content = StringVar() canvas.create_entry(0, 0, anchor = "nw", textvariable = content, fg = "blue", bg = "gold") - content.set("This is CanvasPlus v1.1.2") + content.set("This is CanvasPlus v1.1.3") #create button to print the value in the previously cretaed entry canvas.create_button( diff --git a/readme.md b/readme.md index e0b9308..f92794d 100644 --- a/readme.md +++ b/readme.md @@ -1,5 +1,5 @@ # Canvas Plus # -## V1.1.2 ## +## V1.1.3 ## [![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/) [![PyPI version shields.io](https://img.shields.io/pypi/v/CanvasPlus.svg)](https://pypi.python.org/pypi/CanvasPlus/) [![GitHub release](https://img.shields.io/github/release/Luke-zhang-04/CanvasPlus)](https://GitHub.com/Luke-zhang-04/CanvasPlus/releases/) @@ -64,7 +64,7 @@ canvas.rotate(rect, 150, 600, math.pi/4) #create an entry and set it's default value content = StringVar() canvas.create_entry(0, 0, anchor = "nw", textvariable = content, fg = "blue", bg = "gold") -content.set("This is CanvasPlus v1.1.2") +content.set("This is CanvasPlus v1.1.3") #create button to print the value in the previously cretaed entry canvas.create_button( diff --git a/setup.py b/setup.py index 11079dd..e347d63 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="CanvasPlus", - version="1.1.2", + version="1.1.3", author="Luke Zhang", author_email="luke.zhang2004@gmail.com", description="Improved Canvas widget for tkinter with more functionality to display graphical elements like lines or text. ",