Skip to content

Commit 135d8e9

Browse files
author
Arvid Paeglit
committed
Analyzing remote git repository with . (dot) in repository name
1 parent a6bc967 commit 135d8e9

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## [1.0.17] - 2020-06-17
2+
- Analyzing remote git repository with . (dot) in repository name
3+
14
## [1.0.16] - 2020-06-16
25
- Analyzing remote git repository with specific commit hash
36

deepcode/git_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import re
22

3-
GIT_URI_OBJ = re.compile('((git@|https://)(?P<platform>[\w\.@]+)(/|:))(?P<owner>[\w,\-,\_]+)/(?P<repo>[\w,\-,\_]+)(.git){0,1}((/){0,1})((@(?P<oid>[0-9a-z]+)){0,1})', re.IGNORECASE)
3+
GIT_URI_OBJ = re.compile('((git@|https://)(?P<platform>[\w\.@]+)(/|:))(?P<owner>[\w,\-,\_/]+)/(?P<repo>[\w\.,\-,\_]+)\.git((/){0,1})((@(?P<oid>[0-9a-z]+)){0,1})', re.IGNORECASE)
44

55
def parse_git_uri(uri):
66
"""

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "deepcode"
3-
version = "1.0.16"
3+
version = "1.0.17"
44
description = "A client for DeepCode API (code analysis made by AI)"
55
authors = ["Deepcode <accounts@deepcode.ai>", "Arvid Paeglit <arvid@deepcode.ai>"]
66
license = "MIT"

0 commit comments

Comments
 (0)