diff --git a/dist/homebrew/Sailboat.rb b/dist/homebrew/Sailboat.rb index 9b96d94..4b19557 100644 --- a/dist/homebrew/Sailboat.rb +++ b/dist/homebrew/Sailboat.rb @@ -1,6 +1,6 @@ # Created with sailboat, the Python releaser -# v0.23.1 +# v0.23.2 class Sailboat < Formula include Language::Python::Virtualenv diff --git a/dist/pypi/sailboat-0.23.1.tar.gz b/dist/pypi/sailboat-0.23.1.tar.gz deleted file mode 100644 index 1a0df42..0000000 Binary files a/dist/pypi/sailboat-0.23.1.tar.gz and /dev/null differ diff --git a/dist/pypi/sailboat-0.23.1-py3-none-any.whl b/dist/pypi/sailboat-0.23.2-py3-none-any.whl similarity index 80% rename from dist/pypi/sailboat-0.23.1-py3-none-any.whl rename to dist/pypi/sailboat-0.23.2-py3-none-any.whl index 9748eb6..b719093 100644 Binary files a/dist/pypi/sailboat-0.23.1-py3-none-any.whl and b/dist/pypi/sailboat-0.23.2-py3-none-any.whl differ diff --git a/dist/pypi/sailboat-0.23.2.tar.gz b/dist/pypi/sailboat-0.23.2.tar.gz new file mode 100644 index 0000000..ab2f4da Binary files /dev/null and b/dist/pypi/sailboat-0.23.2.tar.gz differ diff --git a/sailboat.egg-info/PKG-INFO b/sailboat.egg-info/PKG-INFO index e6c1261..df7fd1f 100644 --- a/sailboat.egg-info/PKG-INFO +++ b/sailboat.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: sailboat -Version: 0.23.1 +Version: 0.23.2 Summary: A quick and easy way to distribute your Python projects! Home-page: https://github.com/cole-wilson/sailboat Author: Cole Wilson diff --git a/sailboat.toml b/sailboat.toml index f04f2f2..2f61b29 100644 --- a/sailboat.toml +++ b/sailboat.toml @@ -13,9 +13,9 @@ description = "" url = "https://github.com/cole-wilson/sailboat" keywords = "" license = "MIT" -latest_build = "0.23.1" +latest_build = "0.23.2" author = "Cole Wilson" -latest_release = "0.23.0-rc.3" +latest_release = "0.23.1" release-notes = "a" diff --git a/sailboat/__pycache__/build.cpython-38.pyc b/sailboat/__pycache__/build.cpython-38.pyc index 2016dc0..9274bba 100644 Binary files a/sailboat/__pycache__/build.cpython-38.pyc and b/sailboat/__pycache__/build.cpython-38.pyc differ diff --git a/sailboat/build.py b/sailboat/build.py index d2d6f71..060c515 100644 --- a/sailboat/build.py +++ b/sailboat/build.py @@ -150,4 +150,8 @@ def run(self,plugins,**kwargs): self.data[job._type][build_plugin] = job.data[job._type][build_plugin] dones.append(build_plugin) print(self.section('Finishing up...')) - os.system('python3 setup.py develop') \ No newline at end of file + os.system('python3 setup.py develop') + print(self.section('Built files:')) + for x in glob.glob(f'.{os.sep}dist{os.sep}*{os.sep}*') + glob.glob(f'.{os.sep}dist{os.sep}*'): + if os.path.isfile(x): + print(x) \ No newline at end of file diff --git a/setup.py b/setup.py index f273954..127f5d2 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ options = { "name":"sailboat", - "version":"0.23.1", + "version":"0.23.2", "scripts":[], "entry_points":{'console_scripts': ['sail=sailboat.__main__:main', 'sailboat=sailboat.__main__:main'], 'sailboat_plugins': ['quickstart=sailboat.core:QuickStart', 'pypi=sailboat.builders:PyPi', 'homebrew=sailboat.builders:Homebrew', 'pyinstaller=sailboat.builders:PyInstaller', 'dev=sailboat.core:Develop', 'release=sailboat.core:Release', 'build=sailboat.build:Build', 'wizard=sailboat.core:Wizard', 'remove=sailboat.core:Remove', 'add=sailboat.core:Add', 'plugins=sailboat.core:ManagePlugins', 'git=sailboat.core:Git', 'tasks=sailboat.other:Tasks', 'workflow=sailboat.core:Actions', 'github=sailboat.core:Git', 'github_release=sailboat.core:GithubRelease', 'build_docs_readme=sailboat.other:BuildDocs']}, "author":"Cole Wilson",