From 7c8c1a64d9b343d05c815314137cc8b39fa6c61b Mon Sep 17 00:00:00 2001 From: George Hotz Date: Tue, 20 Jun 2017 15:44:08 -0700 Subject: [PATCH] bump version and push to pypi with 'python3 setup.py sdist upload' --- .gitignore | 4 +++- panda/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f17c3fb..451a0a5 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,6 @@ *.o a.out *~ -.#* \ No newline at end of file +.#* +dist/ +pandacan.egg-info/ diff --git a/panda/__init__.py b/panda/__init__.py index b856934..4b43627 100644 --- a/panda/__init__.py +++ b/panda/__init__.py @@ -6,7 +6,7 @@ import hashlib import socket import usb1 -__version__ = '0.0.1' +__version__ = '0.0.2' class PandaHashMismatchException(Exception): def __init__(self, hash_, expected_hash):