Skip to content

Commit

Permalink
Merge pull request #445 from atlas-bi/alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherpickering authored Sep 19, 2023
2 parents b76747e + 744b14f commit 728e950
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.12.1
2.12.2-alpha.1
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@
"test:lint": "poetry run tox -e lint",
"test:prettier": "prettier --check --config .prettierrc \"web/**/*.{ts,css,less,scss,js,json,md,yaml,html}\""
},
"version": "2.12.1"
"version": "2.12.2-alpha.1"
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ packages = [
]
readme = "readme.md"
repository = "https://github.com/atlas-bi/Hub"
version = "2.12.1"
version = "2.12.2-alpha.1"

[tool.poetry.dependencies]
Flask = "^2.0.1"
Expand Down
2 changes: 1 addition & 1 deletion web/web/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def version() -> str:
response = requests.get(
"https://api.github.com/repos/atlas-bi/Hub/releases/latest", timeout=10
)
upgrade_version = response.json()["name"]
upgrade_version = response.json()["name"].replace("v", "")
except: # noqa: E722
pass

Expand Down

0 comments on commit 728e950

Please sign in to comment.