Move version constants to version.py, add version to serialized flows.

For now, we don't do anything with the serialized version info, but this should
give us some future-proofing for serialization format changes.
This commit is contained in:
Aldo Cortesi
2011-03-09 12:35:38 +13:00
parent 897c4bfc52
commit 592812467d
5 changed files with 6 additions and 6 deletions

2
libmproxy/version.py Normal file
View File

@@ -0,0 +1,2 @@
IVERSION = (0, 3)
VERSION = ".".join([str(i) for i in IVERSION])