3.2.2 in February?

55 views
Skip to first unread message

Vadim Zeitlin

unread,
Jan 26, 2023, 4:38:12 PM1/26/23
to wx-dev
Hello,

I think we should make the next 3.2 release some time soon as there were
many (100+) fixes since 3.2.1 and by the time it happens almost 6 months
will have passed since the last release. Of course, it would be nice to fix
all the issues with 3.2.2 milestone from

https://github.com/wxWidgets/wxWidgets/milestones/3.2.2

before then, but if we can't do it, we should still release the fixes that
we already have.

So I'm thinking about doing it in the second half of February, does
anybody have any preferences concerning the day and/or the date?

Thanks,
VZ

Scott Talbert

unread,
Jan 26, 2023, 5:18:05 PM1/26/23
to wx-dev
Just one data point, the "soft freeze" for Debian Bookworm is on
2023-02-12, so if we want 3.2.2 to be part of the Bookworm release, it
probably needs to be released before then so we can get it in.

Regards,
Scott

Danny Scott

unread,
Jan 26, 2023, 5:18:41 PM1/26/23
to wx-...@googlegroups.com
No Feb date issues for me.

Vadim Zeitlin

unread,
Jan 26, 2023, 5:29:07 PM1/26/23
to wx-...@googlegroups.com
On Thu, 26 Jan 2023 17:18:03 -0500 (EST) Scott Talbert wrote:

ST> Just one data point, the "soft freeze" for Debian Bookworm is on
ST> 2023-02-12, so if we want 3.2.2 to be part of the Bookworm release, it
ST> probably needs to be released before then so we can get it in.

Thanks, this does change things, as it would be best to have 3.2.2 in it.
Can we plan the release for February 9-10 then? Will it be early enough for
Bookworm?

Thanks,
VZ

Scott Talbert

unread,
Jan 26, 2023, 5:36:12 PM1/26/23
to wx-...@googlegroups.com
On Thu, 26 Jan 2023, Vadim Zeitlin wrote:

That seems OK to me.

Scott

Stefan Csomor

unread,
Jan 27, 2023, 2:04:01 AM1/27/23
to wx-...@googlegroups.com
Hi Vadim

> https://github.com/wxWidgets/wxWidgets/milestones/3.2.2 <https://github.com/wxWidgets/wxWidgets/milestones/3.2.2>

I'll have some hours to look at things next week, so It's fine for me, even Feb 9-10

Best,

Stefan

Xaviou

unread,
Jan 28, 2023, 4:11:14 AM1/28/23
to wx-dev
No problem for in with any date in february.

Regards
Xav'

Vadim Zeitlin

unread,
Feb 8, 2023, 6:56:53 PM2/8/23
to wx-...@googlegroups.com
On Thu, 26 Jan 2023 17:36:07 -0500 (EST) Scott Talbert wrote:

ST> On Thu, 26 Jan 2023, Vadim Zeitlin wrote:
[...]
ST> > Can we plan the release for February 9-10 then? Will it be early
ST> > enough for Bookworm?
ST>
ST> That seems OK to me.

I've now created v3.2.2-rc1 tag on 3.2 branch. There have been some big
changes on this branch just before (what fun would it be to make a release
otherwise...) and I'm sorry for the lack of time for testing them, but I
think having these locale-related fixes in it is worth the risk.

The draft release is at

https://github.com/wxWidgets/wxWidgets/releases/tag/untagged-b369135a7d921d5b3ac2

and if nobody sees anything very wrong with it, I'd like to ask Danny and
Xavier to build the binaries corresponding to this tag, so that, ideally,
we could announce them tomorrow.

Thanks in advance!
VZ

Danny Scott

unread,
Feb 8, 2023, 7:20:53 PM2/8/23
to wx-...@googlegroups.com
I will get this done tomorrow morning, and will try for 11am AST.

I have come down with a bad cold and got around 5 hours of intermittent sleep in the last day so tonight won't work for me.

Sorry.

Vadim Zeitlin

unread,
Feb 8, 2023, 7:30:08 PM2/8/23
to wx-...@googlegroups.com
On Wed, 8 Feb 2023 20:20:43 -0400 Danny Scott wrote:

DS> I will get this done tomorrow morning, and will try for 11am AST.
DS>
DS> I have come down with a bad cold and got around 5 hours of intermittent
DS> sleep in the last day so tonight won't work for me.
DS>
DS> Sorry.

No problem at all, it's definitely not as urgent as that and if you need
more time, we can always announce the release and say that the MSVC
binaries will be uploaded slightly later.

Please take your time and hope you get well soon!
VZ

Danny Scott

unread,
Feb 9, 2023, 9:01:51 AM2/9/23
to wx-...@googlegroups.com
Built from installer without issue, uploaded, downloaded, 7z files checked without issue, checksums added.
--
Danny Scott

Xaviou

unread,
Feb 9, 2023, 11:59:09 AM2/9/23
to wx-dev
Hi.

Built from github tag, uploaded, re-downloaded, checked sums and tested 7z archives.
All went fine

Msys2 gcc version must be changed from 12.1.0 to 12.2.0 in bat script files :
Diff :
diff --git a/build/tools/mingw/buildall.bat b/build/tools/mingw/buildall.bat
index 0a1431508e..9dc5a22784 100644
--- a/build/tools/mingw/buildall.bat
+++ b/build/tools/mingw/buildall.bat
@@ -11,7 +11,7 @@ rem Initialize the main log file with the current date and time
 echo %date% %time% : wxWidgets-%wxMAJOR_VERSION%.%wxMINOR_VERSION%.%wxRELEASE_NUMBER% build started > %MAINLOGFILE%
 
 rem Loop through all versions of the compiler
-for %%c in ( 730 810 1030 1210 ) do (
+for %%c in ( 730 810 1030 1220 ) do (
     rem For each version, create a 32 and a 64 bits build
     for %%a in ( 32 64 ) do (
         call officialbuild.bat %%c %%a
diff --git a/build/tools/mingw/parameters.bat b/build/tools/mingw/parameters.bat
index 708ff0ae79..ef4abaf8e3 100644
--- a/build/tools/mingw/parameters.bat
+++ b/build/tools/mingw/parameters.bat
@@ -13,7 +13,7 @@ rem Check if architecture is present
 if "%2" == "" goto :NOPARAMS
 
 rem Define compiler's bin directory
-if "%1" == "1210" (
+if "%1" == "1220" (
     set COMPBINDIR=G:\msys64\mingw%2\bin
 ) else (
     set COMPBINDIR=G:\MinGW%1-%2\bin


Regards
Xav'

Vadim Zeitlin

unread,
Feb 9, 2023, 12:32:19 PM2/9/23
to wx-...@googlegroups.com
On Thu, 9 Feb 2023 08:59:09 -0800 (PST) Xaviou wrote:

X> Built from github tag, uploaded, re-downloaded, checked sums and tested 7z
X> archives.
X> All went fine

Thanks a lot (and to Danny too, of course!)!

X> Msys2 gcc version must be changed from 12.1.0 to 12.2.0 in bat script files

Done now and I've announced the release now and will perform the
post-release steps soon.

Thanks again,
VZ
Reply all
Reply to author
Forward
0 new messages