Skip to content

Commit 4fc11d4

Browse files
committed
ready for binary v0.10.1
1 parent f9719be commit 4fc11d4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

cmd/upgrade.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var upgradeCmd = &cobra.Command{
3131
}
3232

3333
const (
34-
CurrentPlexVersion = "v0.10.0"
34+
CurrentPlexVersion = "v0.10.1"
3535
ReleaseURL = "https://api.github.com/repos/labdao/plex/releases/latest"
3636
ToolsURL = "https://api.github.com/repos/labdao/plex/contents/tools?ref=main"
3737
)

python/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def run(self):
1616
# Retrieve platform from environment variable
1717
plat_name = os.environ['PLAT_NAME']
1818

19-
current_binary_version = "0.10.0"
19+
current_binary_version = "0.10.1"
2020
# map plat_name to go_bin_url
2121
urls = {
2222
"darwin_x86_64": f"https://github.com/labdao/plex/releases/download/v{current_binary_version}/plex_{current_binary_version}_darwin_amd64.tar.gz",
@@ -56,7 +56,7 @@ def download_and_extract(self, go_bin_url, temp_dir):
5656

5757
setup(
5858
name="PlexLabExchange",
59-
version="0.9.0",
59+
version="0.9.1",
6060
packages=find_packages(where='src'), # tell setuptools to look in the 'src' directory for packages
6161
package_dir={'': 'src'}, # tell setuptools that the packages are under the 'src' directory
6262
cmdclass={

0 commit comments

Comments
 (0)