Skip to content

Commit

Permalink
v0.2.0 — Mercurial and Git archive support
Browse files Browse the repository at this point in the history
- 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
jwodder committed Jul 13, 2021
1 parent fabb8e6 commit aa62d81
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.2.0 (in development)
-----------------------
v0.2.0 (2021-07-13)
-------------------
- 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`
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ the ``build-system.requires`` key, like so:
[build-system]
requires = [
"setuptools >= 42", # At least v42 of setuptools required!
"versioningit ~= 0.1.0",
"versioningit ~= 0.2.0",
"wheel"
]
build-backend = "setuptools.build_meta"
Expand Down
2 changes: 1 addition & 1 deletion src/versioningit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit aa62d81

Please sign in to comment.