Wekan REST API v7.36
+Wekan REST API v7.37
diff --git a/public/api/wekan.yml b/public/api/wekan.yml index d2e460b5a..dfe998a90 100644 --- a/public/api/wekan.yml +++ b/public/api/wekan.yml @@ -1,7 +1,7 @@ swagger: '2.0' info: title: Wekan REST API - version: v7.36 + version: v7.37 description: | The REST API allows you to control and extend Wekan with ease. diff --git a/releases/sed-snapcraft-version.sh b/releases/sed-snapcraft-version.sh new file mode 100755 index 000000000..07b8ffc0d --- /dev/null +++ b/releases/sed-snapcraft-version.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +# Update WeKan version at snapcraft.yaml + +# 1) Check that there is 2 parameters +# of Wekan version number: + +if [ $# -ne 2 ] + then + echo "Syntax with Wekan version number:" + echo " ./releases/sed-snapcraft-version.sh 7.10 7.11" + exit 1 +fi + +sed -i 's|$1|$2|g' snapcraft.yaml diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 01b94a582..4277cc541 100644 --- a/sandstorm-pkgdef.capnp +++ b/sandstorm-pkgdef.capnp @@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = ( appTitle = (defaultText = "Wekan"), # The name of the app as it is displayed to the user. - appVersion = 736, + appVersion = 737, # Increment this for every release. - appMarketingVersion = (defaultText = "7.36.0~2024-03-06"), + appMarketingVersion = (defaultText = "7.37.0~2024-03-07"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, diff --git a/snapcraft.yaml b/snapcraft.yaml index 886b2052f..5b752819e 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,5 +1,5 @@ name: wekan -version: '7.36' +version: '7.37' base: core20 summary: Open Source kanban description: | @@ -170,9 +170,9 @@ parts: # Cleanup mkdir .build cd .build - wget https://github.com/wekan/wekan/releases/download/v7.36/wekan-7.36-amd64.zip - unzip wekan-7.36-amd64.zip - rm wekan-7.36-amd64.zip + wget https://github.com/wekan/wekan/releases/download/v7.37/wekan-7.37-amd64.zip + unzip wekan-7.37-amd64.zip + rm wekan-7.37-amd64.zip cd .. ##cd .build/bundle ##find . -type d -name '*-garbage*' | xargs rm -rfScroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.