From 9007c1ffce3090b4ad5498e528cec6d591397946 Mon Sep 17 00:00:00 2001 From: Piotr Fusik Date: Mon, 22 Jan 2024 15:33:45 +0100 Subject: [PATCH] 3.0.0 release. --- Makefile | 2 +- debian/changelog | 6 ++++++ debian/control | 2 +- macos/Info.plist | 4 ++-- png2qoi.c | 4 ++-- qoi-fu.spec | 5 ++++- win32/QOIPaintDotNet.cs | 4 ++-- 7 files changed, 18 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 7ec2aa7..0676390 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 2.0.0 +VERSION = 3.0.0 PREFIX = /usr/local CFLAGS = -O2 -Wall diff --git a/debian/changelog b/debian/changelog index e715031..5da631b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +qoi-fu (3.0.0-1) UNRELEASED; urgency=low + + * New release. + + -- Piotr Fusik Mon, 22 Jan 2024 15:28:05 +0100 + qoi-fu (2.0.0-1) UNRELEASED; urgency=low * New release. diff --git a/debian/control b/debian/control index fb0b7ed..ba8e39a 100644 --- a/debian/control +++ b/debian/control @@ -1,5 +1,5 @@ Source: qoi-fu -Maintainer: Piotr Fusik +Maintainer: Piotr Fusik Section: graphics Priority: optional Standards-Version: 4.6.0 diff --git a/macos/Info.plist b/macos/Info.plist index 78911c6..af428cc 100644 --- a/macos/Info.plist +++ b/macos/Info.plist @@ -25,9 +25,9 @@ CFBundleName qoi-fu CFBundleShortVersionString - 2.0.0 + 3.0.0 CFBundleVersion - 2.0.0 + 3.0.0 CFPlugInDynamicRegisterFunction CFPlugInDynamicRegistration diff --git a/png2qoi.c b/png2qoi.c index 06d5812..9990bd3 100644 --- a/png2qoi.c +++ b/png2qoi.c @@ -1,6 +1,6 @@ // png2qoi.c - command-line converter between PNG and QOI formats // -// Copyright (C) 2021-2022 Piotr Fusik +// Copyright (C) 2021-2024 Piotr Fusik // // MIT License: // @@ -170,7 +170,7 @@ int main(int argc, char **argv) else if ((arg[1] == 'h' && arg[2] == '\0') || strcmp(arg, "--help") == 0) usage(); else if ((arg[1] == 'v' && arg[2] == '\0') || strcmp(arg, "--version") == 0) - puts("png2qoi 2.0.0"); + puts("png2qoi 3.0.0"); else { fprintf(stderr, "png2qoi: unknown option: %s\n", arg); return 1; diff --git a/qoi-fu.spec b/qoi-fu.spec index 7def701..5dc6c38 100644 --- a/qoi-fu.spec +++ b/qoi-fu.spec @@ -1,5 +1,5 @@ Name: qoi-fu -Version: 2.0.0 +Version: 3.0.0 Release: 1 Summary: Quite OK Image (QOI) encoder/decoder License: MIT @@ -54,6 +54,9 @@ make PREFIX=%{buildroot}%{_prefix} GDK_PIXBUF_LOADERS_DIR=%{buildroot}%{_libdir} %{_libdir}/gimp/2.0/plug-ins/file-qoi/file-qoi %changelog +* Mon Jan 22 2024 Piotr Fusik +- 3.0.0-1 + * Mon Sep 12 2022 Piotr Fusik - 2.0.0-1 diff --git a/win32/QOIPaintDotNet.cs b/win32/QOIPaintDotNet.cs index a369744..0e42260 100644 --- a/win32/QOIPaintDotNet.cs +++ b/win32/QOIPaintDotNet.cs @@ -32,8 +32,8 @@ [assembly: AssemblyTitle("Paint.NET Quite OK Image (QOI) plugin")] [assembly: AssemblyCompany("Piotr Fusik")] [assembly: AssemblyCopyright("Copyright © 2021-2024")] -[assembly: AssemblyVersion("2.0.0.0")] -[assembly: AssemblyFileVersion("2.0.0.0")] +[assembly: AssemblyVersion("3.0.0.0")] +[assembly: AssemblyFileVersion("3.0.0.0")] namespace QOI.PaintDotNet {