-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.2.0 — Mercurial and Git archive support
- The log messages displayed for unknown parameters are now at WARNING level instead of INFO and include suggestions for what you might have meant - "git" `vcs` method: `default-tag` will now be honored if the `git describe` command fails (which generally only happens in a repository without any commits) - Added an experimental "git-archive" method for determining a version when installing from a Git archive - Project directories under `.git/` are no longer considered to be under version control - Project directories inside Git working directories that are not themselves tracked by Git are no longer considered to be under version control - Support added for installing from Mercurial repositories & archives
- Loading branch information
Showing
3 changed files
with
4 additions
and
4 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
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
Visit <https://github.com/jwodder/versioningit> for more information. | ||
""" | ||
|
||
__version__ = "0.2.0.dev1" | ||
__version__ = "0.2.0" | ||
__author__ = "John Thorvald Wodder II" | ||
__author_email__ = "[email protected]" | ||
__license__ = "MIT" | ||
|