This commit is contained in:
Lauri Ojansivu 2023-11-02 19:49:56 +02:00
parent c9a24c38d4
commit 4518e2d23c
6 changed files with 10 additions and 10 deletions

View file

@ -20,7 +20,7 @@ Note:
[How to upgrade WeKan](https://github.com/wekan/wekan/issues/4585) [How to upgrade WeKan](https://github.com/wekan/wekan/issues/4585)
# Upcoming WeKan ® release # v7.11 2023-11-02 WeKan ® release
This release fixes the following CRITICAL SECURITY ISSUES: This release fixes the following CRITICAL SECURITY ISSUES:

View file

@ -1,5 +1,5 @@
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
appVersion: "v7.10.0" appVersion: "v7.11.0"
files: files:
userUploads: userUploads:
- README.md - README.md

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{ {
"name": "wekan", "name": "wekan",
"version": "v7.10.0", "version": "v7.11.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View file

@ -1,6 +1,6 @@
{ {
"name": "wekan", "name": "wekan",
"version": "v7.10.0", "version": "v7.11.0",
"description": "Open-Source kanban", "description": "Open-Source kanban",
"private": true, "private": true,
"repository": { "repository": {

View file

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"), appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user. # The name of the app as it is displayed to the user.
appVersion = 710, appVersion = 711,
# Increment this for every release. # Increment this for every release.
appMarketingVersion = (defaultText = "7.10.0~2023-09-29"), appMarketingVersion = (defaultText = "7.11.0~2023-11-02"),
# Human-readable presentation of the app version. # Human-readable presentation of the app version.
minUpgradableAppVersion = 0, minUpgradableAppVersion = 0,

View file

@ -1,5 +1,5 @@
name: wekan name: wekan
version: '7.10' version: '7.11'
base: core20 base: core20
summary: Open Source kanban summary: Open Source kanban
description: | description: |
@ -170,9 +170,9 @@ parts:
# Cleanup # Cleanup
mkdir .build mkdir .build
cd .build cd .build
wget https://github.com/wekan/wekan/releases/download/v7.10/wekan-7.10-amd64.zip wget https://github.com/wekan/wekan/releases/download/v7.11/wekan-7.11-amd64.zip
unzip wekan-7.10-amd64.zip unzip wekan-7.11-amd64.zip
rm wekan-7.10-amd64.zip rm wekan-7.11-amd64.zip
cd .. cd ..
##cd .build/bundle ##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf ##find . -type d -name '*-garbage*' | xargs rm -rf