Skip to content

Commit dd2557f

Browse files
committed
Version updated
1 parent 786e333 commit dd2557f

File tree

4 files changed

+18
-14
lines changed

4 files changed

+18
-14
lines changed

.version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.11.0
1+
3.12.0

make/r3-view.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
101 ICON "icon/r3.ico"
22

33
1 VERSIONINFO
4-
FILEVERSION 3,11,2,0
5-
PRODUCTVERSION 3,11,2,0
4+
FILEVERSION 3,12,0,0
5+
PRODUCTVERSION 3,12,0,0
66
BEGIN
77
BLOCK "StringFileInfo"
88
BEGIN
99
BLOCK "040904E4"
1010
BEGIN
1111
VALUE "FileDescription", "Rebol Console"
12-
VALUE "FileVersion", "3.11"
12+
VALUE "FileVersion", "3.12"
1313
VALUE "InternalName", "Rebol 3 (Oldes branch)"
1414
VALUE "LegalCopyright", "2012 REBOL Technologies"
1515
VALUE "OriginalFilename", "Rebol.exe"
1616
VALUE "ProductName", "Rebol/View"
17-
VALUE "ProductVersion", "3.11"
17+
VALUE "ProductVersion", "3.12"
1818
END
1919
END
2020
BLOCK "VarFileInfo"

make/r3.rc

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
101 ICON "icon/r3.ico"
22

33
1 VERSIONINFO
4-
FILEVERSION 3,11,2,0
5-
PRODUCTVERSION 3,11,2,0
4+
FILEVERSION 3,12,0,0
5+
PRODUCTVERSION 3,12,0,0
66
BEGIN
77
BLOCK "StringFileInfo"
88
BEGIN
99
BLOCK "040904E4"
1010
BEGIN
1111
VALUE "FileDescription", "Rebol Console"
12-
VALUE "FileVersion", "3.11"
12+
VALUE "FileVersion", "3.12"
1313
VALUE "InternalName", "Rebol 3 (Oldes branch)"
1414
VALUE "LegalCopyright", "2012 REBOL Technologies"
1515
VALUE "OriginalFilename", "Rebol.exe"
1616
VALUE "ProductName", "Rebol"
17-
VALUE "ProductVersion", "3.11"
17+
VALUE "ProductVersion", "3.12"
1818
END
1919
END
2020
BLOCK "VarFileInfo"

make/rebol3.nest

+9-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ temp: %make/tmp/
1818
stack-size: 4194304 ;= 4MB (4 * 1024 * 1024)
1919
optimize: 2
2020

21-
version: 3.11.2
21+
version: 3.12.0
2222

2323
#if Linux? [ defines: TO_LINUX ]
2424
#if macOS? [ defines: TO_MACOS ]
@@ -48,7 +48,7 @@ target-linux: [
4848
sys: linux
4949
platform: Linux
5050
vendor: pc
51-
compiler: gcc
51+
compiler: clang
5252

5353
library: %dl
5454
]
@@ -642,6 +642,10 @@ include-cryptography: [
642642
; so far cca 183kB uncompressed (basic AES, all ellyptic curves, rsa, rc4, bignum, entropy )
643643
config: INCLUDE_CRYPTOGRAPHY
644644

645+
#if Windows? [
646+
library: %Advapi32 ;; used by mbedtls_platform_entropy_poll
647+
]
648+
645649
define: MBEDTLS_ASN1_PARSE_C ; The generic ASN1 parser.
646650
define: MBEDTLS_ASN1_WRITE_C ; The generic ASN1 writer.
647651

@@ -1368,15 +1372,15 @@ eggs: [
13681372
]
13691373

13701374
"Rebol/Core linux-x64 shared library" [
1371-
name: %lib-rebol3-core-linux-x64
1372-
lflag: "-Wl,-install_name,'/usr/local/lib/librebol-core.3.so'"
1375+
name: %librebol3-core-linux-x64
1376+
;lflag: "-Wl,-install_name,'/usr/local/lib/librebol-core.3.so'"
13731377
:target-linux
13741378
:include-rebol-core
13751379
:make-x64-dll
13761380
]
13771381
"Rebol/Core linux-x64 host application" [
13781382
name: %host-core-linux-x64
1379-
shared: %lib-rebol3-core-linux-x64
1383+
shared: %librebol3-core-linux-x64
13801384
:target-linux
13811385
:include-rebol-core
13821386
:make-x64-host

0 commit comments

Comments
 (0)