diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 10bb33ae..8bfeac9a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.9 +current_version = 0.6.10 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/changelog.rst b/changelog.rst index 657641e7..faac6e3e 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,7 +1,7 @@ Changelog ========= -Last change: 22-FEB-2024 MTS +Last change: 06-JUN-2024 MTS 0.6.9 - 0.6.10 -------------- @@ -12,7 +12,8 @@ Last change: 22-FEB-2024 MTS - Mask dialog in Picasso: Render saves .png mask files - Mask dialog in Picasso: Render allows to save .png with the blurred image - Picasso: Localize - added the option to save the current view as a .png file -- Picasso:Render - functions related to picking moved to ``picasso.lib`` and ``picasso.postprocess`` +- Picasso: Render - functions related to picking moved to ``picasso.lib`` and ``picasso.postprocess`` +- Picasso: Render - saving picked localizations saves the area(s) of the picked region(s) in the metadata file (.yaml) 0.6.6 - 0.6.8 ------------- diff --git a/distribution/picasso.iss b/distribution/picasso.iss index 40d2b61a..a99e3162 100644 --- a/distribution/picasso.iss +++ b/distribution/picasso.iss @@ -2,10 +2,10 @@ AppName=Picasso AppPublisher=Jungmann Lab, Max Planck Institute of Biochemistry -AppVersion=0.6.9 +AppVersion=0.6.10 DefaultDirName={commonpf}\Picasso DefaultGroupName=Picasso -OutputBaseFilename="Picasso-Windows-64bit-0.6.9" +OutputBaseFilename="Picasso-Windows-64bit-0.6.10" ArchitecturesAllowed=x64 ArchitecturesInstallIn64BitMode=x64 diff --git a/docs/conf.py b/docs/conf.py index e7465712..182f1191 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "0.6.9" +release = "0.6.10" # -- General configuration --------------------------------------------------- diff --git a/picasso/__init__.py b/picasso/__init__.py index a0285f55..303b41ad 100644 --- a/picasso/__init__.py +++ b/picasso/__init__.py @@ -8,7 +8,7 @@ import os.path as _ospath import yaml as _yaml -__version__ = "0.6.9" +__version__ = "0.6.10" _this_file = _ospath.abspath(__file__) _this_dir = _ospath.dirname(_this_file) diff --git a/picasso/__version__.py b/picasso/__version__.py index 00075140..d755331e 100644 --- a/picasso/__version__.py +++ b/picasso/__version__.py @@ -1 +1 @@ -VERSION_NO = "0.6.9" +VERSION_NO = "0.6.10" diff --git a/release/one_click_windows_gui/create_installer_windows.bat b/release/one_click_windows_gui/create_installer_windows.bat index dcdb36f7..3ab80dff 100644 --- a/release/one_click_windows_gui/create_installer_windows.bat +++ b/release/one_click_windows_gui/create_installer_windows.bat @@ -11,7 +11,7 @@ call conda activate picasso_installer call python setup.py sdist bdist_wheel call cd release/one_click_windows_gui -call pip install "../../dist/picassosr-0.6.9-py3-none-any.whl" +call pip install "../../dist/picassosr-0.6.10-py3-none-any.whl" call pip install pyinstaller==5.7 call pyinstaller ../pyinstaller/picasso.spec -y --clean diff --git a/release/one_click_windows_gui/picasso_innoinstaller.iss b/release/one_click_windows_gui/picasso_innoinstaller.iss index 23c55198..05970e23 100644 --- a/release/one_click_windows_gui/picasso_innoinstaller.iss +++ b/release/one_click_windows_gui/picasso_innoinstaller.iss @@ -1,10 +1,10 @@ [Setup] AppName=Picasso AppPublisher=Jungmann Lab, Max Planck Institute of Biochemistry -AppVersion=0.6.9 +AppVersion=0.6.10 DefaultDirName={commonpf}\Picasso DefaultGroupName=Picasso -OutputBaseFilename="Picasso-Windows-64bit-0.6.9" +OutputBaseFilename="Picasso-Windows-64bit-0.6.10" ArchitecturesAllowed=x64 ArchitecturesInstallIn64BitMode=x64 diff --git a/setup.py b/setup.py index 36ac9688..be59f7a4 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name="picassosr", - version="0.6.9", + version="0.6.10", author="Joerg Schnitzbauer, Maximilian T. Strauss, Rafal Kowalewski", author_email=("joschnitzbauer@gmail.com, straussmaximilian@gmail.com, rafalkowalewski998@gmail.com"), url="https://github.com/jungmannlab/picasso",