瀏覽代碼

Update to v0.1.23 (#797)

Nikhil Rao 2 年之前
父節點
當前提交
bdafc21d3d
共有 2 個文件被更改,包括 2 次插入3 次删除
  1. 1 2
      pynecone/utils/prerequisites.py
  2. 1 1
      pyproject.toml

+ 1 - 2
pynecone/utils/prerequisites.py

@@ -52,8 +52,7 @@ def get_bun_version() -> Optional[str]:
         result = subprocess.run(
         result = subprocess.run(
             ["bun", "-v"], stdout=subprocess.PIPE, stderr=subprocess.PIPE
             ["bun", "-v"], stdout=subprocess.PIPE, stderr=subprocess.PIPE
         )
         )
-        version = result.stdout.decode().strip()
-        return version
+        return result.stdout.decode().strip()
     except Exception:
     except Exception:
         return None
         return None
 
 

+ 1 - 1
pyproject.toml

@@ -1,6 +1,6 @@
 [tool.poetry]
 [tool.poetry]
 name = "pynecone"
 name = "pynecone"
-version = "0.1.22"
+version = "0.1.23"
 description = "Web apps in pure Python."
 description = "Web apps in pure Python."
 license = "Apache-2.0"
 license = "Apache-2.0"
 authors = [
 authors = [