diff --git a/CHANGELOG.md b/CHANGELOG.md index 512a89601..c0a3d3a3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ This changelog summarizes updates to our open source project. You can also find ## [Work In Progress] - vNext Release - [Date TBD] +## v0.11 Release - December, 2021 +* Change notifications. Thanks @wiggin77! +* Calendar view. Thanks @sbishel! +* `@mention` autocomplete. Thanks @hahmadia! + ## v0.10 Release - November, 2021 * @mention notifications. Thanks @wiggin77! * Board calculations. Thanks @harshilsharma63! diff --git a/mac/Focalboard/Globals.swift b/mac/Focalboard/Globals.swift index 602a4343a..f55aed8fb 100644 --- a/mac/Focalboard/Globals.swift +++ b/mac/Focalboard/Globals.swift @@ -4,8 +4,8 @@ import Foundation class Globals { - static let ProductVersion = 01000 - static let WhatsNewVersion = 01000 + static let ProductVersion = 01100 + static let WhatsNewVersion = 01100 static var currentWhatsNewVersion: Int { get { return UserDefaults.standard.integer(forKey: "whatsNewVersion") } diff --git a/mac/Focalboard/Info.plist b/mac/Focalboard/Info.plist index 0a203f913..6c20a5863 100644 --- a/mac/Focalboard/Info.plist +++ b/mac/Focalboard/Info.plist @@ -17,7 +17,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 0.10.0 + 0.11.0 CFBundleVersion $(CURRENT_PROJECT_VERSION) ITSAppUsesNonExemptEncryption diff --git a/mac/Focalboard/whatsnew.txt b/mac/Focalboard/whatsnew.txt index eadf70baf..ef3bd7194 100644 --- a/mac/Focalboard/whatsnew.txt +++ b/mac/Focalboard/whatsnew.txt @@ -1,11 +1,8 @@ -Welcome to Focalboard v0.10.0! +Welcome to Focalboard v0.11.0! -Thank you contributors! There are a number of new features and improvements in this release: +Thank you contributors! There are a number of improvements in this release, and one major new feature: -* Board calculations. Thanks @harshilsharma63! -* Mattermost: @mention notifications. Thanks @wiggin77! -* Mattermost: Unfurl card previews in posts. Thanks @hahmadia! -* Plus many, many contributions from Hacktoberfest and beyond, including from: @jufab, @kamre, @Johennes, @nishantwrp, @tiago154, @DeeJayBro, @CuriousCorrelation, @prakharporwal, @donno2048, @anchepiece, @puerco, @adithyaakrishna, @JenyaFTW, @ivernus, @grsky360, @b4sen, @naresh1205, @JtheBAB, @ssensalo, @berkeka, @yedamao, @Prassud, @NakulChauhan2001, @achie27, @crspeller, @sahil9001, @alauregaillard, @igordsm, @rafaeelaudibert, @kaakaa, @Sayanta66, @Bhavin789, @Shahzayb, @kayazeren, @fcoiuri, @tsabi, @DeviousLab, @leosunmo, @xMicky24GIT, @majidsajadi, @marcvelasco, and @aloks98. Sorry if we missed anyone in this list! +* Calendar view. Thanks @sbishel! If you like what you see, please consider taking a moment to rate this version in the App Store. Your positive ratings make a real difference for us. diff --git a/mattermost-plugin/plugin.json b/mattermost-plugin/plugin.json index d6d07daa5..7b5639479 100644 --- a/mattermost-plugin/plugin.json +++ b/mattermost-plugin/plugin.json @@ -6,7 +6,7 @@ "support_url": "https://github.com/mattermost/focalboard/issues", "release_notes_url": "https://github.com/mattermost/focalboard/releases", "icon_path": "assets/starter-template-icon.svg", - "version": "0.10.0", + "version": "0.11.0", "min_server_version": "6.0.0", "server": { "executables": { diff --git a/mattermost-plugin/server/manifest.go b/mattermost-plugin/server/manifest.go index 35eccdf59..0ec747195 100644 --- a/mattermost-plugin/server/manifest.go +++ b/mattermost-plugin/server/manifest.go @@ -20,7 +20,7 @@ const manifestStr = ` "support_url": "https://github.com/mattermost/focalboard/issues", "release_notes_url": "https://github.com/mattermost/focalboard/releases", "icon_path": "assets/starter-template-icon.svg", - "version": "0.10.0", + "version": "0.11.0", "min_server_version": "6.0.0", "server": { "executables": { diff --git a/server/model/version.go b/server/model/version.go index 8efbb20f4..5c8a2afc7 100644 --- a/server/model/version.go +++ b/server/model/version.go @@ -4,6 +4,7 @@ package model // It should be maintained in chronological order with most current // release at the front of the list. var versions = []string{ + "0.11.0", "0.10.0", "0.9.4", "0.9.3", diff --git a/webapp/package-lock.json b/webapp/package-lock.json index 651f332e2..d154008ee 100644 --- a/webapp/package-lock.json +++ b/webapp/package-lock.json @@ -1,12 +1,12 @@ { "name": "focalboard", - "version": "0.10.0", + "version": "0.11.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "focalboard", - "version": "0.10.0", + "version": "0.11.0", "dependencies": { "@mattermost/compass-icons": "^0.1.10", "@reduxjs/toolkit": "^1.6.0", diff --git a/webapp/package.json b/webapp/package.json index b7150ebc6..2322c4072 100644 --- a/webapp/package.json +++ b/webapp/package.json @@ -1,6 +1,6 @@ { "name": "focalboard", - "version": "0.10.0", + "version": "0.11.0", "private": true, "description": "", "scripts": { diff --git a/webapp/src/components/globalHeader/__snapshots__/globalHeader.test.tsx.snap b/webapp/src/components/globalHeader/__snapshots__/globalHeader.test.tsx.snap index a58b83789..8b7917f20 100644 --- a/webapp/src/components/globalHeader/__snapshots__/globalHeader.test.tsx.snap +++ b/webapp/src/components/globalHeader/__snapshots__/globalHeader.test.tsx.snap @@ -10,7 +10,7 @@ exports[`components/sidebar/GlobalHeader header menu should match snapshot 1`] = /> diff --git a/webapp/src/components/sidebar/__snapshots__/sidebar.test.tsx.snap b/webapp/src/components/sidebar/__snapshots__/sidebar.test.tsx.snap index d6332a181..f3d1a1c1c 100644 --- a/webapp/src/components/sidebar/__snapshots__/sidebar.test.tsx.snap +++ b/webapp/src/components/sidebar/__snapshots__/sidebar.test.tsx.snap @@ -52,7 +52,7 @@ exports[`components/sidebarSidebar global templates 1`] = `
- v0.10.0 + v0.11.0
@@ -236,7 +236,7 @@ exports[`components/sidebarSidebar sidebar hidden 1`] = `
- v0.10.0 + v0.11.0
@@ -610,7 +610,7 @@ exports[`components/sidebarSidebar sidebar in dashboard page 1`] = `
- v0.10.0 + v0.11.0
diff --git a/webapp/src/constants.ts b/webapp/src/constants.ts index ad12e0b4c..0c082928d 100644 --- a/webapp/src/constants.ts +++ b/webapp/src/constants.ts @@ -19,7 +19,7 @@ class Constants { static readonly defaultTitleColumnWidth = 280 static readonly titleColumnId = '__title' - static readonly versionString = '0.10.0' + static readonly versionString = '0.11.0' static readonly languages = [ { diff --git a/webapp/src/pages/dashboard/__snapshots__/dashboardPage.test.tsx.snap b/webapp/src/pages/dashboard/__snapshots__/dashboardPage.test.tsx.snap index ebd7b00f2..506710cb4 100644 --- a/webapp/src/pages/dashboard/__snapshots__/dashboardPage.test.tsx.snap +++ b/webapp/src/pages/dashboard/__snapshots__/dashboardPage.test.tsx.snap @@ -55,7 +55,7 @@ exports[`pages/dashboard/DashboardPage base case 1`] = `
- v0.10.0 + v0.11.0
diff --git a/win-wpf/AppxManifest.xml b/win-wpf/AppxManifest.xml index 17c19c5fc..d91840b5d 100644 --- a/win-wpf/AppxManifest.xml +++ b/win-wpf/AppxManifest.xml @@ -2,7 +2,7 @@ - + Focalboard Mattermost, Inc.