Skip to content

Commit 3614a1f

Browse files
committed
update package versioning
1 parent 5fc68f2 commit 3614a1f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
GITHUB_TOKEN: ${{ github.token }}
9191
run: >-
9292
gh release create
93-
'v0.1.0'
93+
'v0.2.0'
9494
--repo '${{ github.repository }}'
9595
--notes ""
9696
@@ -102,5 +102,5 @@ jobs:
102102
# sigstore-produced signatures and certificates.
103103
run: >-
104104
gh release upload
105-
'v0.1.0' dist/**
105+
'v0.2.0' dist/**
106106
--repo '${{ github.repository }}'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
]
1111
description = "Documentation for `weco`, a CLI for using Weco AI's code optimizer."
1212
readme = "README.md"
13-
version = "0.1.0"
13+
version = "0.2.0"
1414
license = {text = "MIT"}
1515
requires-python = ">=3.12"
1616
dependencies = ["requests", "rich"]

weco/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# DO NOT EDIT
2-
__version__ = "0.1.0"
2+
__pkg_version__ = "0.2.0"
33
__api_version__ = "v1"
44
__base_url__ = f"https://api.aide.weco.ai/{__api_version__}"

weco/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import Dict, Any
22
import rich
33
import requests
4-
from weco import __version__, __base_url__
4+
from weco import __pkg_version__, __base_url__
55
import sys
66

77

@@ -45,7 +45,7 @@ def start_optimization_session(
4545
"evaluator": evaluator_config,
4646
"search_policy": search_policy_config,
4747
},
48-
"metadata": {"client_name": "cli", "client_version": __version__, **api_keys},
48+
"metadata": {"client_name": "cli", "client_version": __pkg_version__, **api_keys},
4949
},
5050
)
5151
response.raise_for_status()

0 commit comments

Comments
 (0)