diff options
-rw-r--r-- | CHANGELOG.md | 8 | ||||
-rw-r--r-- | package.json | 2 | ||||
-rw-r--r-- | sandstorm-pkgdef.capnp | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 033ab137..d6727562 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# v1.25 2018-08-09 Wekan release + +This release fixes the following bugs: + +- [Fix showing only the cards of the current board in calendar view](https://github.com/wekan/wekan/pull/1822). + +Thanks to GitHub user Yanonix for contributions. + # v1.24 2018-08-09 Wekan release This release add the following new features: diff --git a/package.json b/package.json index d2856af6..77c831da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "1.24.0", + "version": "1.25.0", "description": "The open-source Trello-like kanban", "private": true, "scripts": { diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 9eb192c0..d9e24978 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 = 109, + appVersion = 110, # Increment this for every release. - appMarketingVersion = (defaultText = "1.24.0~2018-08-09"), + appMarketingVersion = (defaultText = "1.25.0~2018-08-09"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, |