Skip to content

Commit 8903e8f

Browse files
committed
v3.1.0 — Improve some error messages
- When `git describe` fails to retrieve a tag, the resulting log/error message now includes all options passed to the command (based on contribution by [@jenshnielsen](https://github.com/jenshnielsen)) - When `hg log` fails to retrieve a tag, the resulting log/error message now includes the tag pattern passed to `latesttag()`, if any
1 parent ccd10b2 commit 8903e8f

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
v3.1.0 (in development)
2-
-----------------------
1+
v3.1.0 (2024-03-16)
2+
-------------------
33
- When `git describe` fails to retrieve a tag, the resulting log/error message
44
now includes all options passed to the command (based on contribution by
55
[@jenshnielsen](https://github.com/jenshnielsen))

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2021-2023 John Thorvald Wodder II and contributors
3+
Copyright (c) 2021-2024 John Thorvald Wodder II and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/changelog.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Changelog
44
=========
55

6-
v3.1.0 (in development)
7-
-----------------------
6+
v3.1.0 (2024-03-16)
7+
-------------------
88
- When :command:`git describe` fails to retrieve a tag, the resulting log/error
99
message now includes all options passed to the command (based on contribution
1010
by `@jenshnielsen <https://github.com/jenshnielsen>`_)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
project = "versioningit"
44
author = "John Thorvald Wodder II"
5-
copyright = "2021-2023 John Thorvald Wodder II" # noqa: A001
5+
copyright = "2021-2024 John Thorvald Wodder II" # noqa: A001
66

77
extensions = [
88
"sphinx.ext.autodoc",

src/versioningit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<https://versioningit.rtfd.io> for more information.
4444
"""
4545

46-
__version__ = "3.1.0.dev1"
46+
__version__ = "3.1.0"
4747
__author__ = "John Thorvald Wodder II"
4848
__author_email__ = "[email protected]"
4949
__license__ = "MIT"

0 commit comments

Comments
 (0)