_version.py 686 B

12345678910111213141516
  1. # This file must be kept very simple, because it is consumed from several
  2. # places -- it is imported by h11/__init__.py, execfile'd by setup.py, etc.
  3. # We use a simple scheme:
  4. # 1.0.0 -> 1.0.0+dev -> 1.1.0 -> 1.1.0+dev
  5. # where the +dev versions are never released into the wild, they're just what
  6. # we stick into the VCS in between releases.
  7. #
  8. # This is compatible with PEP 440:
  9. # http://legacy.python.org/dev/peps/pep-0440/
  10. # via the use of the "local suffix" "+dev", which is disallowed on index
  11. # servers and causes 1.0.0+dev to sort after plain 1.0.0, which is what we
  12. # want. (Contrast with the special suffix 1.0.0.dev, which sorts *before*
  13. # 1.0.0.)
  14. __version__ = "0.14.0"