This commit is contained in:
Lauri Ojansivu 2023-05-24 12:28:45 +03:00
parent 006560b96d
commit 2b4dd3b5ce
8 changed files with 21 additions and 21 deletions

View file

@ -18,7 +18,7 @@ Note:
[How to upgrade WeKan](https://github.com/wekan/wekan/issues/4585)
# Upcoming WeKan ® release
# v6.90 2023-05-24 WeKan ® release
This release adds the following new features:

View file

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

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "v6.89.0",
"version": "v6.90.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "v6.89.0",
"version": "v6.90.0",
"description": "Open-Source kanban",
"private": true,
"repository": {

View file

@ -7,7 +7,7 @@
<meta charset="utf-8">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>Wekan REST API v6.89</title>
<title>Wekan REST API v6.90</title>
<style>
</style>
@ -1558,7 +1558,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
<ul class="toc-list-h1">
<li>
<a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v6.89">Wekan REST API v6.89</a>
<a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v6.90">Wekan REST API v6.90</a>
</li>
@ -1675,11 +1675,6 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
</li>
<li>
<a href="#new_checklist_item" class="toc-h2 toc-link" data-title="">new_checklist_item</a>
</li>
</ul>
</li>
@ -1689,6 +1684,11 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
<ul class="toc-list-h2">
<li>
<a href="#new_checklist_item" class="toc-h2 toc-link" data-title="">new_checklist_item</a>
</li>
<li>
<a href="#get_checklist_item" class="toc-h2 toc-link" data-title="">get_checklist_item</a>
@ -2171,7 +2171,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
<div class="page-wrapper">
<div class="dark-box"></div>
<div class="content">
<h1 id="wekan-rest-api">Wekan REST API v6.89</h1>
<h1 id="wekan-rest-api">Wekan REST API v6.90</h1>
<blockquote>
<p>Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.</p>
</blockquote>
@ -6291,6 +6291,7 @@ System.out.println(response.toString());
To perform this operation, you must be authenticated by means of one of the following methods:
UserSecurity
</aside>
<h1 id="wekan-rest-api-checklistitems">ChecklistItems</h1>
<h2 id="new_checklist_item">new_checklist_item</h2>
<p><a id="opIdnew_checklist_item"></a></p>
<blockquote>
@ -6564,7 +6565,6 @@ System.out.println(response.toString());
To perform this operation, you must be authenticated by means of one of the following methods:
UserSecurity
</aside>
<h1 id="wekan-rest-api-checklistitems">ChecklistItems</h1>
<h2 id="get_checklist_item">get_checklist_item</h2>
<p><a id="opIdget_checklist_item"></a></p>
<blockquote>

View file

@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
version: v6.89
version: v6.90
description: |
The REST API allows you to control and extend Wekan with ease.
@ -539,7 +539,7 @@ paths:
operationId: new_checklist_item
summary: add a new item to a checklist
tags:
- Checklists
- ChecklistItems
consumes:
- multipart/form-data
- application/json

View file

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
appVersion = 689,
appVersion = 690,
# Increment this for every release.
appMarketingVersion = (defaultText = "6.89.0~2023-05-12"),
appMarketingVersion = (defaultText = "6.90.0~2023-05-24"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,

View file

@ -1,5 +1,5 @@
name: wekan
version: '6.89'
version: '6.90'
base: core20
summary: Open Source kanban
description: |
@ -168,9 +168,9 @@ parts:
# Cleanup
mkdir .build
cd .build
wget https://github.com/wekan/wekan/releases/download/v6.89/wekan-6.89-amd64.zip
unzip wekan-6.89-amd64.zip
rm wekan-6.89-amd64.zip
wget https://github.com/wekan/wekan/releases/download/v6.90/wekan-6.90-amd64.zip
unzip wekan-6.90-amd64.zip
rm wekan-6.90-amd64.zip
cd ..
##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf