Skip to content

Commit

Permalink
Merge pull request #446 from gauge-sh/revert-default-upload-link
Browse files Browse the repository at this point in the history
revert default upload link
  • Loading branch information
caelean authored Nov 30, 2024
2 parents b705d79 + 0b7d823 commit 6c94690
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tach"
version = "0.16.1"
version = "0.16.2"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tach"
version = "0.16.1"
version = "0.16.2"
authors = [
{ name = "Caelean Barnes", email = "[email protected]" },
{ name = "Evan Doyle", email = "[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion python/tach/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import annotations

__version__ = "0.16.1"
__version__ = "0.16.2"

__all__ = ["__version__"]
2 changes: 1 addition & 1 deletion python/tach/modularity.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def upload_report_to_gauge(


GAUGE_API_KEY = os.getenv("GAUGE_API_KEY", "")
GAUGE_API_BASE_URL = os.getenv("GAUGE_API_BASE_URL", "http://localhost:8000")
GAUGE_API_BASE_URL = os.getenv("GAUGE_API_BASE_URL", "https://app.gauge.sh")


def build_modularity_upload_path(repo: str) -> str:
Expand Down

0 comments on commit 6c94690

Please sign in to comment.