From faae77146afc87201de757b911ea59d716124333 Mon Sep 17 00:00:00 2001 From: Geoffrey Yu Date: Wed, 22 Jul 2020 22:01:33 -0400 Subject: [PATCH] [Release] Set CLI and plugin version to 0.5.0 This commit marks the release of version 0.5.0 of the Skyline CLI and plugin. As of this release, Skyline has been promoted from alpha to beta and its repositories have been moved to the "skylineprof" organization on GitHub. --- cli/setup.py | 2 +- cli/skyline/__init__.py | 2 +- plugin/package-lock.json | 2 +- plugin/package.json | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cli/setup.py b/cli/setup.py index 51f52e4..8c1fa7a 100644 --- a/cli/setup.py +++ b/cli/setup.py @@ -50,7 +50,7 @@ ] CLASSIFIERS = [ - "Development Status :: 3 - Alpha", + "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Programming Language :: Python :: 3 :: Only", diff --git a/cli/skyline/__init__.py b/cli/skyline/__init__.py index 2f7258b..1dd4b44 100644 --- a/cli/skyline/__init__.py +++ b/cli/skyline/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4.0" +__version__ = "0.5.0" __description__ = "Interactive in-editor performance profiling, visualization, and debugging for PyTorch neural networks." diff --git a/plugin/package-lock.json b/plugin/package-lock.json index 5ba7172..c9dae07 100644 --- a/plugin/package-lock.json +++ b/plugin/package-lock.json @@ -1,6 +1,6 @@ { "name": "skyline", - "version": "0.4.0", + "version": "0.5.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/plugin/package.json b/plugin/package.json index 4c304a5..1cdd64f 100644 --- a/plugin/package.json +++ b/plugin/package.json @@ -1,7 +1,7 @@ { "name": "skyline", "main": "./lib/skyline", - "version": "0.4.0", + "version": "0.5.0", "description": "Interactive in-editor performance profiling, visualization, and debugging for PyTorch neural networks.", "keywords": [ "neural networks", @@ -20,7 +20,7 @@ "uriHandler": { "method": "handleURI" }, - "repository": "https://github.com/geoffxy/skyline-atom", + "repository": "https://github.com/skylineprof/skyline-atom", "license": " Apache-2.0", "engines": { "atom": ">=1.0.0 <2.0.0"