Skip to content

Commit

Permalink
Fix an error made when copying source
Browse files Browse the repository at this point in the history
  • Loading branch information
allgreed committed Aug 2, 2022
1 parent 759421b commit e44a060
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.6.6
current_version = 1.6.7
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(-(?P<release>.*))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
2 changes: 1 addition & 1 deletion dtcli/shim.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def _Path_is_relative(p: Path, other: Path) -> bool:
# source: https://github.com/python/cpython/blob/3.10/Lib/pathlib.py#L824
except AttributeError: # in Python 3.8
try:
p.relative_to(*other)
p.relative_to(other)
except ValueError:
return False
else:
Expand Down
2 changes: 1 addition & 1 deletion dtcli/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "1.6.6"
__version__ = "1.6.7"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ packages = [
]
readme = "README.md"
repository = "https://github.com/dynatrace-oss/dt-cli"
version = "1.6.6"
version = "1.6.7"


[tool.poetry.dependencies]
Expand Down

0 comments on commit e44a060

Please sign in to comment.