Skip to content

Commit 0f44709

Browse files
committed
Bump version number, and update change log and list of contributors.
1 parent 371eb0f commit 0f44709

File tree

5 files changed

+80
-8
lines changed

5 files changed

+80
-8
lines changed

changes.txt

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,28 @@ should be located in the same directory as this file is.
2929
------------------------------------------------------------------------------
3030

3131

32+
Changes between 3.7.0.9 and 3.7.0.10
33+
====================================
34+
35+
(Note: This version has not been released in binary form, as it does not
36+
feature significant changes in functionality over the original 3.7.0 binaries,
37+
and any fixed bugs are deemed highly unlikely to actually occur in the wild.)
38+
39+
This version constitutes a maintenance update of the POV-Ray 3.7.0 source
40+
code, focused on improving compatibility with modern OpenEXR versions.
41+
42+
Fixed or Mitigated Bugs
43+
-----------------------
44+
45+
- Fix incompatibilities with OpenEXR 3 library (GitHub issue #408).
46+
(Note: Use of OpenEXR 3 may require `configure CXXFLAGS="-std=c++11" ...`)
47+
- OpenEXR handling code could conceivably report an unwarranted error
48+
when handling OpenEXR files > 2 GB on some platforms (notably Windows
49+
or 32-bit systems).
50+
- Using mosaic preview together with radiosity would cause failed assertions
51+
(and thus crashes) in debug builds.
52+
53+
3254
Changes between 3.7.0.8 and 3.7.0.9
3355
===================================
3456

@@ -46,7 +68,7 @@ Fixed or Mitigated Bugs
4668
"Building on postmarketOS on PinePhone").
4769
- Eliminate uint type from platform-independent code (concludes fix of
4870
GitHub issue #400, "Building on postmarketOS on PinePhone").
49-
- Change locations of auto-generated `config.h` and origonal `VERSION` file
71+
- Change locations of auto-generated `config.h` and original `VERSION` file
5072
to prevent the latter or its copy from erroneously being picked up on some
5173
systems as `<version>` standard C++20 include file by libraries (notably
5274
boost thread 1.73 and later; fixes GitHub issue #403, "povray 3.7.0.8 does

revision.txt

Lines changed: 51 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,59 @@ Notes:
3131
http://news.povray.org/42765ef3$1@news.povray.org
3232
------------------------------------------------------------------------------
3333

34+
------------------------------------------------------------------------------
35+
POV-Ray v3.7.0.10
36+
------------------------------------------------------------------------------
37+
38+
Commit 371eb0fb on 2021-07-08 by Christoph Lipka (c-lipka)
39+
40+
Address minor issues related to OpenEXR.
41+
42+
- OpenEXR handling code could conceivably report an unwarranted error
43+
when handling OpenEXR files > 2 GB on some platforms (notably Windows
44+
or 32-bit systems).
45+
- Document that use of OpenEXR 3.0.0 or later requires compiler to
46+
explicitly claim C++11 support.
47+
48+
Commit e13ab3eb on 2021-07-08 by Christoph Lipka
49+
50+
Fix crash in radiosity.cpp related to mosaic preview. (#299)
51+
52+
Commit fe934337 on 2021-07-08 by TonVanDenBroek
53+
54+
Changes to support OpenEXR 3.0. (#422)
55+
56+
Commit 63ed4541 on 2021-07-08 by Christoph Lipka (c-lipka)
57+
58+
Amend GitHub build test Workflow to enable C++11 on macOS (needed for
59+
OpenEXR 3)
60+
61+
Commit 56dbaf49 on 2021-07-02 by Christoph Lipka (c-lipka)
62+
63+
Activate GitHub Workflows build tests on v3.7 branch and disabe AppVeyor
64+
and Travis CI.
65+
66+
Commit 564675d3 on 2021-07-02 by Christoph Lipka (c-lipka)
67+
68+
Fix missing dependency in Visual Studio projects.
69+
70+
Commit 387040ed on 2021-06-03 by Christoph Lipka (c-lipka)
71+
72+
[ci skip] Fix `.gitignore` to catch a few files now created in `unix`
73+
subdirectory.
74+
75+
Commit 08409ebd on 2021-06-02 by Christoph Lipka (c-lipka)
76+
77+
[ci skip] Minor fix to change log.
78+
3479
------------------------------------------------------------------------------
3580
POV-Ray v3.7.0.9
3681
------------------------------------------------------------------------------
3782

83+
Commit cb927576 on 2021-06-02 by Christoph Lipka (c-lipka)
84+
85+
Bump version number and update change log.
86+
3887
Commit 17abe5f7 on 2021-06-02 by Christoph Lipka (c-lipka)
3988

4089
List OpenEXR 3.0.0 and higher as currently not supported in Unix
@@ -46,10 +95,10 @@ Commit f68653cc on 2021-06-02 by Christoph Lipka (c-lipka)
4695
header.
4796

4897
- Move `config.h` (created by `configure`) from main directory to
49-
`unix` subdirectory
98+
`unix` subdirectory
5099
- Move original `VERSION` from `unix` to `unix/prebuild` subdirectory.
51100
- Fix some instances in `prebuild.sh` where we're adding the main
52-
directory to the include search path for no obvious reason.
101+
directory to the include search path for no obvious reason.
53102

54103
This should fix GitHub issue #403.
55104

source/backend/povray.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ const char *PrimaryDevelopers[] =
136136
/// assisting developers
137137
const char *AssistingDevelopers[] =
138138
{
139+
"Ton van den Broek",
139140
"Nicolas Calimet",
140141
"Jerome Grimbert",
141142
"James Holsenback",

unix/AUTHORS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Primary POV-Ray 3.7 Architects/Developers: (Alphabetically)
77
Chris Cason Thorsten Froehlich Christoph Lipka
88

99
With Assistance From: (Alphabetically)
10-
Nicolas Calimet Jerome Grimbert James Holsenback Christoph Hormann
11-
Nathan Kopp Juha Nieminen
10+
Ton van den Broek Nicolas Calimet Jerome Grimbert James Holsenback
11+
Christoph Hormann Nathan Kopp Juha Nieminen
1212

1313
Past Contributors: (Alphabetically)
1414
Steve Anger Eric Barish Dieter Bayer David K. Buck

unix/povray.1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH POV-Ray 1 "August 2013" "POV\-Team" "Version 3.7" \" -*- nroff -*-
1+
.TH POV-Ray 1 "July 2021" "POV\-Team" "Version 3.7" \" -*- nroff -*-
22
.\" man page written by Andreas Dilger
33
.\" updated by Mark Gordon for POV-Ray 3.5
44
.\" updated by Nicolas Calimet and Christoph Hormann for POV-Ray 3.6
@@ -384,8 +384,8 @@ Primary POV-Ray 3.7 Architects/Developers: (Alphabetically)
384384
.LP
385385
With Assistance From: (Alphabetically)
386386
.LP
387-
Nicolas Calimet Jerome Grimbert James Holsenback Christoph Hormann
388-
Nathan Kopp Juha Nieminen
387+
Ton van den Broek Nicolas Calimet Jerome Grimbert James Holsenback
388+
Christoph Hormann Nathan Kopp Juha Nieminen
389389
.LP
390390
Past Contributors: (Alphabetically)
391391
.LP

0 commit comments

Comments
 (0)