diff --git a/CHANGELOG.md b/CHANGELOG.md index fb9ac1a02..ca7bcdbb8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v1.16 2018-07-06 Wekan release + +- Fix: [Boards.forEach is not function](https://github.com/wekan/wekan/commit/a41190cdf024df65ad1c9931b3065c6ababeaf25). + +Thanks to GitHub user xet7 for contributions. + # v1.15 2018-07-06 Wekan release This release fixes the following bugs: diff --git a/package.json b/package.json index 47137ee7f..fe45137b4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "1.15.0", + "version": "1.16.0", "description": "The open-source Trello-like kanban", "private": true, "scripts": { diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index cfcfba84d..c96301580 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 = 100, + appVersion = 101, # Increment this for every release. - appMarketingVersion = (defaultText = "1.15.0~2018-07-06"), + appMarketingVersion = (defaultText = "1.16.0~2018-07-06"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, diff --git a/server/migrations.js b/server/migrations.js index ae9cb8da9..d0e63388a 100644 --- a/server/migrations.js +++ b/server/migrations.js @@ -153,7 +153,7 @@ Migrations.add('add-sort-checklists', () => { }); Migrations.add('add-swimlanes', () => { - Boards.forEach((board) => { + Boards.find().forEach((board) => { const swimlaneId = board.getDefaultSwimline()._id; Cards.find({ boardId: board._id }).forEach((card) => { if (!card.hasOwnProperty('swimlaneId')) {