diff options
-rw-r--r-- | CHANGELOG.md | 12 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | sandstorm-pkgdef.capnp | 4 |
3 files changed, 12 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3efde551..c4f0fea3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,16 @@ -# Upcoming Wekan release +# v0.76 2018-02-21 Wekan release This release adds the following new features: -- [Add swimlaneId to POST /api/boards/:boardId/lists/:listId/cards route](https://github.com/wekan/wekan/commit/ee0f42eeb1b10107bd8fc38cdefbdbc4f3fde108). +- [Add swimlaneId to POST /api/boards/:boardId/lists/:listId/cards route](https://github.com/wekan/wekan/commit/ee0f42eeb1b10107bd8fc38cdefbdbc4f3fde108); +- [Added path to capnp.js to make Wekan work on Sandstorm](https://github.com/wekan/wekan/commit/11e9811f82858a3d98036e142b0da69d867adebc). -Thanks to GitHub user couscous3 for contributions. +Known bugs: + +- [Disabled Import temporarily on Sandstorm because of data loss bug](https://github.com/wekan/wekan/commit/e30f6515c623de7a48f25e0b2fc75313ae5d187c); +- [Swimlane not visible at Sandstorm](https://github.com/wekan/wekan/issues/1494). + +Thanks to GitHub users couscous3 and xet7 for their contributions. # v0.75 2018-02-16 Wekan release diff --git a/package.json b/package.json index a77be7fe..c7091509 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "0.75.0", + "version": "0.76.0", "description": "The open-source Trello-like kanban", "private": true, "scripts": { diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 8aec475f..ceda4da9 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 = 60, + appVersion = 61, # Increment this for every release. - appMarketingVersion = (defaultText = "0.75.0~2018-02-16"), + appMarketingVersion = (defaultText = "0.76.0~2018-02-21"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, |