Skip to content

Commit cb92757

Browse files
committed
Bump version number and update change log.
1 parent 17abe5f commit cb92757

File tree

3 files changed

+45
-3
lines changed

3 files changed

+45
-3
lines changed

revision.txt

+42
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,52 @@ Notes:
3131
http://news.povray.org/[email protected]
3232
------------------------------------------------------------------------------
3333

34+
------------------------------------------------------------------------------
35+
POV-Ray v3.7.0.9
36+
------------------------------------------------------------------------------
37+
38+
Commit 17abe5f7 on 2021-06-02 by Christoph Lipka (c-lipka)
39+
40+
List OpenEXR 3.0.0 and higher as currently not supported in Unix
41+
install docs.
42+
43+
Commit f68653cc on 2021-06-02 by Christoph Lipka (c-lipka)
44+
45+
Prevent `VERSION` from being picked up as C++20 `<version>` standard
46+
header.
47+
48+
- Move `config.h` (created by `configure`) from main directory to
49+
`unix` subdirectory
50+
- Move original `VERSION` from `unix` to `unix/prebuild` subdirectory.
51+
- Fix some instances in `prebuild.sh` where we're adding the main
52+
directory to the include search path for no obvious reason.
53+
54+
This should fix GitHub issue #403.
55+
56+
Commit 48b1951d on 2021-06-02 by Christoph Lipka (c-lipka)
57+
58+
Fix Travis CI automated build tests.
59+
60+
Commit a7b6a94f on 2021-05-30 by Christoph Lipka
61+
62+
Eliminate `uint` type from platform-independent code.
63+
64+
Commit 3d513983 on 2021-05-30 by Christoph Lipka (c-lipka)
65+
66+
Modify Unix `./configure` script `stat` invocation to support
67+
busybox-style systems.
68+
69+
`./configure` will now formally probe which `stat` parameter to use, and
70+
in addition to `--format=` (GNU) and `-f` (BSD) also try `-c` (busybox).
71+
3472
------------------------------------------------------------------------------
3573
POV-Ray v3.7.0.8
3674
------------------------------------------------------------------------------
3775

76+
Commit 908900d9 on 2018-05-27 by Christoph Lipka
77+
78+
Bump version number and update change log.
79+
3880
Commit e711a323 on 2018-05-27 by Christoph Lipka
3981

4082
Address stack size issues in Mac OS builds.

source/backend/povray.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ bool povray_terminated();
7676
// POV-Ray version and copyright message macros
7777

7878
#if POV_RAY_IS_OFFICIAL == 1
79-
#define POV_RAY_VERSION "3.7.0.8"
79+
#define POV_RAY_VERSION "3.7.0.9"
8080
#else
81-
#define POV_RAY_VERSION "3.7.0.8.unofficial"
81+
#define POV_RAY_VERSION "3.7.0.9.unofficial"
8282
#endif
8383

8484
#define POV_RAY_COPYRIGHT "Copyright 1991-2013 Persistence of Vision Raytracer Pty. Ltd."

unix/prebuild/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.7.0.8
1+
3.7.0.9

0 commit comments

Comments
 (0)