-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
28 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
2011-02-26 Doug Hellmann <[email protected]> | ||
|
||
* virtualenvwrapper/version.py: Put the version info inside the | ||
package so it is available to the doc build and packaging | ||
script. This also makes the readthedocs.org build work properly. | ||
|
||
* setup.py: Import the version information from the package. | ||
|
||
* docs/sphinx/conf.py: Import the version information from the | ||
package. | ||
|
||
* Makefile: Remove rule to get the version from the installer for | ||
the doc build. | ||
|
||
2011-01-24 Doug Hellmann <[email protected]> | ||
|
||
* virtualenvwrapper.sh: Replace hard-coded name "virtualenv" with | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env python | ||
# encoding: utf-8 | ||
# | ||
# Copyright (c) 2011 Doug Hellmann. All rights reserved. | ||
# | ||
"""Version info for virtualenvwrapper base system. | ||
""" | ||
|
||
VERSION = '2.6.2' |