From a0e900930e6d7c5f8c51277dae9f933eb76c9570 Mon Sep 17 00:00:00 2001 From: Cameron White Date: Thu, 6 Jan 2022 22:41:55 -0500 Subject: [PATCH] Bump version number for 2.0.1 release --- .github/workflows/build.yml | 2 +- CHANGELOG.md | 15 +++++++++++++-- Pinta.Core/Pinta.Core.csproj | 2 +- Pinta.Core/PintaCore.cs | 2 +- Pinta.Docking/Pinta.Docking.csproj | 2 +- Pinta.Effects/Pinta.Effects.csproj | 2 +- Pinta.Gui.Widgets/Pinta.Gui.Widgets.csproj | 2 +- Pinta.Resources/Pinta.Resources.csproj | 2 +- Pinta.Tools/Pinta.Tools.csproj | 2 +- Pinta/Pinta.csproj | 2 +- configure.ac | 2 +- installer/macos/Info.plist | 4 ++-- installer/windows/installer.iss | 2 +- tests/Pinta.Core.Tests/Pinta.Core.Tests.csproj | 2 +- xdg/pinta.appdata.xml.in | 18 ++++++++++++++++++ 15 files changed, 45 insertions(+), 16 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5b22a2385..93e3349f7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,7 +43,7 @@ jobs: uses: actions/upload-artifact@v2 with: name: Pinta-${{ matrix.platform }}.zip - path: pinta-2.0.zip + path: pinta-2.0.1.zip if-no-files-found: error build-macos: diff --git a/CHANGELOG.md b/CHANGELOG.md index e043c1237..0f7cdf389 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Change Log All notable changes to this project (beginning with version 1.7) will be documented in this file. -## [Unreleased](https://github.com/PintaProject/Pinta/compare/2.0...HEAD) +## [Unreleased](https://github.com/PintaProject/Pinta/compare/2.0.1...HEAD) Thanks to the following contributors who worked on this release: - @cameronwhite @@ -9,14 +9,25 @@ Thanks to the following contributors who worked on this release: ### Added +### Changed + +### Fixed + +## [2.0.1](https://github.com/PintaProject/Pinta/releases/tag/2.0.1) - 2022/01/06 + +Thanks to the following contributors who worked on this release: +- @cameronwhite +- @jpobst + ### Changed - Some of the less frequently used items in the View menu (e.g. hiding the toolbar or status bar) are now grouped in their own submenu (#203) +- Updated translations ### Fixed +- Fixed a missing file (`installer/linux/install.proj`) from the release tarball that caused the `install` build step to fail - Fixed a bug where opening a large number of tabs could cause the window's width to expand ([#1956182](https://bugs.launchpad.net/pinta/+bug/1956182)) - Fixed a bug that could cause a border to appear around the image when zoomed in far enough to require scrolling - Fixed an issue where tool shortcuts could be affected by Num Lock being enabled ([#1093935](https://bugs.launchpad.net/pinta/+bug/1093935)) -- Fixed a missing file (`installer/linux/install.proj`) from the release tarball that caused the `install` build step to fail - Fixed an issue where the credits text in the About dialog was aligned incorrectly ([#1956168](https://bugs.launchpad.net/pinta/+bug/1956168)) ## [2.0](https://github.com/PintaProject/Pinta/releases/tag/2.0) - 2021/12/31 diff --git a/Pinta.Core/Pinta.Core.csproj b/Pinta.Core/Pinta.Core.csproj index 7b87b00f9..d82979abf 100644 --- a/Pinta.Core/Pinta.Core.csproj +++ b/Pinta.Core/Pinta.Core.csproj @@ -6,7 +6,7 @@ true enable - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta.Core/PintaCore.cs b/Pinta.Core/PintaCore.cs index ce95eb75c..d68196da9 100644 --- a/Pinta.Core/PintaCore.cs +++ b/Pinta.Core/PintaCore.cs @@ -46,7 +46,7 @@ public static class PintaCore public static EffectsManager Effects { get; private set; } public static IServiceManager Services { get; } - public const string ApplicationVersion = "2.0"; + public const string ApplicationVersion = "2.0.1"; static PintaCore () { diff --git a/Pinta.Docking/Pinta.Docking.csproj b/Pinta.Docking/Pinta.Docking.csproj index 530e72c1d..558f2d1ab 100644 --- a/Pinta.Docking/Pinta.Docking.csproj +++ b/Pinta.Docking/Pinta.Docking.csproj @@ -6,7 +6,7 @@ Pinta.Docking Pinta.Docking - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta.Effects/Pinta.Effects.csproj b/Pinta.Effects/Pinta.Effects.csproj index 900eae06a..5b6b33543 100644 --- a/Pinta.Effects/Pinta.Effects.csproj +++ b/Pinta.Effects/Pinta.Effects.csproj @@ -6,7 +6,7 @@ true enable - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta.Gui.Widgets/Pinta.Gui.Widgets.csproj b/Pinta.Gui.Widgets/Pinta.Gui.Widgets.csproj index e2aa4dcac..4bfc3a700 100644 --- a/Pinta.Gui.Widgets/Pinta.Gui.Widgets.csproj +++ b/Pinta.Gui.Widgets/Pinta.Gui.Widgets.csproj @@ -6,7 +6,7 @@ true enable - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta.Resources/Pinta.Resources.csproj b/Pinta.Resources/Pinta.Resources.csproj index 6976fc5cc..233f874a6 100644 --- a/Pinta.Resources/Pinta.Resources.csproj +++ b/Pinta.Resources/Pinta.Resources.csproj @@ -5,7 +5,7 @@ Pinta.Resources enable - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta.Tools/Pinta.Tools.csproj b/Pinta.Tools/Pinta.Tools.csproj index fb27992d3..96ab7c69c 100644 --- a/Pinta.Tools/Pinta.Tools.csproj +++ b/Pinta.Tools/Pinta.Tools.csproj @@ -6,7 +6,7 @@ true enable - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/Pinta/Pinta.csproj b/Pinta/Pinta.csproj index d2d2b5a6c..2889c3c05 100644 --- a/Pinta/Pinta.csproj +++ b/Pinta/Pinta.csproj @@ -10,7 +10,7 @@ ..\bin false - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/configure.ac b/configure.ac index 03e005761..c3e244133 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT([pinta], [2.0]) +AC_INIT([pinta], [2.0.1]) AM_INIT_AUTOMAKE([tar-ustar foreign]) AC_PROG_INSTALL diff --git a/installer/macos/Info.plist b/installer/macos/Info.plist index 560de7404..cf03fec3c 100644 --- a/installer/macos/Info.plist +++ b/installer/macos/Info.plist @@ -116,11 +116,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 2.0 + 2.0.1 CFBundleSignature xmmd CFBundleVersion - 2.0 + 2.0.1 NSAppleScriptEnabled NO UTImportedTypeDeclarations diff --git a/installer/windows/installer.iss b/installer/windows/installer.iss index e0d748be9..137dacbb1 100644 --- a/installer/windows/installer.iss +++ b/installer/windows/installer.iss @@ -1,5 +1,5 @@ #define ProductName "Pinta" -#define ProductVersion "2.0" +#define ProductVersion "2.0.1" [Setup] AppId=C0BCDEDA-62E7-4A43-8435-58323E096912 diff --git a/tests/Pinta.Core.Tests/Pinta.Core.Tests.csproj b/tests/Pinta.Core.Tests/Pinta.Core.Tests.csproj index ccc14df46..f459b3811 100644 --- a/tests/Pinta.Core.Tests/Pinta.Core.Tests.csproj +++ b/tests/Pinta.Core.Tests/Pinta.Core.Tests.csproj @@ -5,7 +5,7 @@ Pinta.Core.Tests false - 2.0.0.0 + 2.0.1.0 PintaProject diff --git a/xdg/pinta.appdata.xml.in b/xdg/pinta.appdata.xml.in index 78f9b67c5..39cffee2d 100644 --- a/xdg/pinta.appdata.xml.in +++ b/xdg/pinta.appdata.xml.in @@ -38,6 +38,24 @@ pinta + + https://github.com/PintaProject/Pinta/releases/tag/2.0.1 + +

Changes

+
    +
  • Some of the less frequently used items in the View menu (e.g. hiding the toolbar or status bar) are now grouped in their own submenu (#203)
  • +
  • Updated translations
  • +
+

Bug Fixes

+
    +
  • Fixed a missing file (`installer/linux/install.proj`) from the release tarball that caused the `install` build step to fail
  • +
  • Fixed a bug where opening a large number of tabs could cause the window's width to expand (#1956182)
  • +
  • Fixed a bug that could cause a border to appear around the image when zoomed in far enough to require scrolling
  • +
  • Fixed an issue where tool shortcuts could be affected by Num Lock being enabled (#1093935)
  • +
  • Fixed an issue where the credits text in the About dialog was aligned incorrectly (#1956168)
  • +
+
+
https://github.com/PintaProject/Pinta/releases/tag/2.0