Skip to content
This repository was archived by the owner on Apr 5, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ChangeLog

## 0.4.1 2018-02-23
* fix base Google API url (Graham Ullrich)
* Use correct color delimiter (Dorian Kind)

## 0.4.0 2013-06-02
* Python 3 compatibility (Geremy Condra)
* Fix chco separator (Iacopo Spalletti)
Expand Down
6 changes: 3 additions & 3 deletions pygooglechart.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"""
pygooglechart - A complete Python wrapper for the Google Chart API

http://pygooglechart.slowchop.com/
https://github.com/gak/pygooglechart

Copyright 2007-2013 Gerald Kaszuba
Copyright 2007-2018 Gerald Kaszuba

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -44,7 +44,7 @@
# Helper variables and functions
# -----------------------------------------------------------------------------

__version__ = '0.4.0'
__version__ = '0.4.1'
__author__ = 'Gerald Kaszuba'

reo_colour = re.compile('^([A-Fa-f0-9]{2,2}){3,4}$')
Expand Down