Skip to content

Commit

Permalink
Version 1.10.2 (#67)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-hossack committed Oct 27, 2022
1 parent 9751735 commit 60a4f3a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions docs/source/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [1.10.2] - 2022-10-26

### Fixed

- Fixed bug https://github.com/andrew-hossack/dash-tools/issues/65 where using http for git remote url doesn't work; thanks [@mtzirkel](https://github.com/mtzirkel) for support!

## [1.10.1] - 2022-10-23

### Changed
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -- Project information

__version__ = '1.10.1'
__version__ = '1.10.2'

project = 'DashTools'
author = 'Andrew Hossack'
Expand Down
4 changes: 3 additions & 1 deletion src/dashtools/dashboard/pages/deployPage.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ def setGithubUrl(self, config_remote_origin_url_raw: str):
if not config_remote_origin_url_raw:
self.githubUrl = None
return
self.githubUrl = f'https://github.com/{config_remote_origin_url_raw.split(":")[1].split(".git")[0]}'
remote_url = config_remote_origin_url_raw.replace(
'git@github.com:', '').replace('https://github.com/', '').replace('.git', '')
self.githubUrl = f'https://github.com/{remote_url}'

def isDeployReady(self) -> bool:
""" returns if app is ready to be deployed """
Expand Down
2 changes: 1 addition & 1 deletion src/dashtools/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Version in this file must match version for docs/source/version.py!

__version__ = '1.10.1'
__version__ = '1.10.2'

0 comments on commit 60a4f3a

Please sign in to comment.