Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version v0.15.0 #286

Merged
merged 1 commit into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion client/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "resana_secure"
version = "0.14.1"
version = "0.15.0"
description = ""
authors = ["Scille SAS"]

Expand Down
2 changes: 1 addition & 1 deletion client/resana_secure/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.14.1"
__version__ = "0.15.0"
2 changes: 1 addition & 1 deletion packaging/snap/snap/snapcraft.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions packaging/windows/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
10 changes: 5 additions & 5 deletions server/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions server/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "resana_server"
version = "0.14.1"
version = "0.15.0"
description = ""
authors = ["Scille SAS"]
packages = [
Expand All @@ -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"
Expand Down