Skip to content

Commit c669d6d

Browse files
committed
prepare 1.3.0
1 parent 741be60 commit c669d6d

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGES

+4-1
Original file line numberDiff line numberDiff line change
@@ -1322,7 +1322,10 @@ Version history
13221322
* installer:
13231323
- full installer now bundled with DMD 2.098.1 and LDC 1.28.1
13241324

1325-
unreleased version 1.2.1
1325+
unreleased version 1.3.0
1326+
* dmdserver updated to frontend of DMD 2.099.1-beta
1327+
* full installer now bundled with DMD 2.099.1 and LDC 1.28.1
13261328
* bugzilla 22747: D files in VC projects failed to build, added separate versions of
13271329
Microsoft.Build.CPPTasks.Common for 17.0, 17.1 and 17.2.
13281330
* bugzilla 22764: now searches the 32-bit registry hive for install paths of DMD and LDC
1331+
* cv2pdb 0.51: added DWARF support for non-contiguous functions.

VERSION

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#define VERSION_MAJOR 1
2-
#define VERSION_MINOR 2
3-
#define VERSION_REVISION 1
4-
#define VERSION_BETA -beta
2+
#define VERSION_MINOR 3
3+
#define VERSION_REVISION 0
4+
#define VERSION_BETA -rc
55
#define VERSION_BUILD 1

nsis/visuald.nsi

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
; define DMD source path to include dmd installation
3131
; !define DMD
32-
!define DMD_VERSION "2.098.1"
32+
!define DMD_VERSION "2.099.0"
3333
!define DMD_SRC c:\d\dmd-${DMD_VERSION}
3434

3535
; define LDC to include ldc installation

vdc/dmdserver/semanalysis.d

+3
Original file line numberDiff line numberDiff line change
@@ -865,6 +865,8 @@ void do_unittests()
865865
{ // Line 20
866866
Proc proc;
867867
proc.task.member = 3;
868+
Proc* pproc = &proc;
869+
pproc.task.member = 1;
868870
}
869871
};
870872
m = checkErrors(source, "");
@@ -876,6 +878,7 @@ void do_unittests()
876878
checkExpansions(m, 14, 23, "C", [ "Compiler" ]);
877879
checkExpansions(m, 14, 32, "D", [ "DMD" ]);
878880
checkExpansions(m, 22, 14, "m", [ "member", "mangleof" ]);
881+
checkExpansions(m, 24, 11, "t", [ "task", "tupleof" ]);
879882

880883
source =
881884
q{ // Line 1

0 commit comments

Comments
 (0)