diff --git a/client/README.md b/client/README.md index a644007f7..84e222692 100644 --- a/client/README.md +++ b/client/README.md @@ -22,7 +22,7 @@ Make a release branch from `master`: ```shell git checkout master git pull -git checkout -b MAJOR.MINOR +git checkout -b releases/MAJOR.MINOR.PATCH ``` 1) Modify version in `resana_secure/_version.py` diff --git a/client/pyproject.toml b/client/pyproject.toml index 8e42ef31d..d5b8c7cae 100644 --- a/client/pyproject.toml +++ b/client/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "resana_secure" -version = "0.14.1" +version = "0.15.0" description = "" authors = ["Scille SAS"] diff --git a/client/resana_secure/_version.py b/client/resana_secure/_version.py index f075dd36a..9da2f8fcc 100644 --- a/client/resana_secure/_version.py +++ b/client/resana_secure/_version.py @@ -1 +1 @@ -__version__ = "0.14.1" +__version__ = "0.15.0" diff --git a/packaging/snap/snap/snapcraft.yaml b/packaging/snap/snap/snapcraft.yaml index 909835914..e253b78c6 100644 --- a/packaging/snap/snap/snapcraft.yaml +++ b/packaging/snap/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: resana-secure -version: 0.14.1 +version: 0.15.0 summary: Secure cloud framework description: | Resana is a cloud-based application that allow simple yet diff --git a/packaging/windows/README.md b/packaging/windows/README.md index dde3f416e..caaeaf981 100644 --- a/packaging/windows/README.md +++ b/packaging/windows/README.md @@ -14,6 +14,10 @@ Run the `freeze_program.py` Python script with the path to the Resana Secure sou ```shell python freeze_program.py ../../client ``` +or +```shell +python freeze_program.py ../../client --conformity +``` Note the Python version embedded inside the build will be taken from the interpreter you run the script with. diff --git a/server/poetry.lock b/server/poetry.lock index 7f321378a..7994ed211 100644 --- a/server/poetry.lock +++ b/server/poetry.lock @@ -820,14 +820,14 @@ files = [ [[package]] name = "parsec-cloud" -version = "2.16.0rc4" +version = "2.16.0rc5" description = "Secure cloud framework" optional = false python-versions = ">=3.9.10,<3.10.0" files = [ - {file = "parsec_cloud-2.16.0rc4-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:0292a086a7659afcd543ab3d8aaaf1a70f1c7f2b3e68083fc89d94fb22ed8c94"}, - {file = "parsec_cloud-2.16.0rc4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d65f040f973a8719aea8b3a855b21d8e445976e6fb540947a3c5baa92e93f626"}, - {file = "parsec_cloud-2.16.0rc4-cp39-cp39-win_amd64.whl", hash = "sha256:71ac20afb6fd7bee4776cc922c9679cf1236ba2e297e7bca3ec81dda6b19fd33"}, + {file = "parsec_cloud-2.16.0rc5-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:50876d6afe1e5973b2251d243b4b9d5cb03e41f2361d18d4c779dbe3d95f98a7"}, + {file = "parsec_cloud-2.16.0rc5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d62e546c561e1641a824d716a949251a2f93ef622f1ece5b3368d07c09cd319"}, + {file = "parsec_cloud-2.16.0rc5-cp39-cp39-win_amd64.whl", hash = "sha256:1f1f919fa59671d1e6d0277bd905593ee9cc5d6409da6b648dab1b82e203315e"}, ] [package.dependencies] @@ -1399,4 +1399,4 @@ testing = ["big-O", "flake8 (<5)", "jaraco.functools", "jaraco.itertools", "more [metadata] lock-version = "2.0" python-versions = "~3.9.10" -content-hash = "ddfad135013157436beb07e7213078775ec3b4ef2e8fe76c2e35f37f5c9a85b3" +content-hash = "b3ca905762e7ac2a41ee9fad4b03284fd4e3beb1a9d02111b1b17f8f49ec09ec" diff --git a/server/pyproject.toml b/server/pyproject.toml index 2bcbedfb0..7cc3aa204 100644 --- a/server/pyproject.toml +++ b/server/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "resana_server" -version = "0.14.1" +version = "0.15.0" description = "" authors = ["Scille SAS"] packages = [ @@ -27,7 +27,7 @@ oscrypto = "1.3.0" werkzeug = "2.2.3" # install parsec from pypi for linux, or from git for windows & macos -parsec-cloud = { version = "^2.16.0-rc.4", extras = ["backend"] } +parsec-cloud = { version = "^2.16.0-rc.5", extras = ["backend"] } [tool.poetry.dev-dependencies] pytest = "^7.0"