Skip to content

Commit

Permalink
prepare 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rainers committed Apr 3, 2022
1 parent 741be60 commit c669d6d
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGES
Expand Up @@ -1322,7 +1322,10 @@ Version history
* installer:
- full installer now bundled with DMD 2.098.1 and LDC 1.28.1

unreleased version 1.2.1
unreleased version 1.3.0
* dmdserver updated to frontend of DMD 2.099.1-beta
* full installer now bundled with DMD 2.099.1 and LDC 1.28.1
* bugzilla 22747: D files in VC projects failed to build, added separate versions of
Microsoft.Build.CPPTasks.Common for 17.0, 17.1 and 17.2.
* bugzilla 22764: now searches the 32-bit registry hive for install paths of DMD and LDC
* cv2pdb 0.51: added DWARF support for non-contiguous functions.
6 changes: 3 additions & 3 deletions VERSION
@@ -1,5 +1,5 @@
#define VERSION_MAJOR 1
#define VERSION_MINOR 2
#define VERSION_REVISION 1
#define VERSION_BETA -beta
#define VERSION_MINOR 3
#define VERSION_REVISION 0
#define VERSION_BETA -rc
#define VERSION_BUILD 1
2 changes: 1 addition & 1 deletion nsis/visuald.nsi
Expand Up @@ -29,7 +29,7 @@

; define DMD source path to include dmd installation
; !define DMD
!define DMD_VERSION "2.098.1"
!define DMD_VERSION "2.099.0"
!define DMD_SRC c:\d\dmd-${DMD_VERSION}

; define LDC to include ldc installation
Expand Down
3 changes: 3 additions & 0 deletions vdc/dmdserver/semanalysis.d
Expand Up @@ -865,6 +865,8 @@ void do_unittests()
{ // Line 20
Proc proc;
proc.task.member = 3;
Proc* pproc = &proc;
pproc.task.member = 1;
}
};
m = checkErrors(source, "");
Expand All @@ -876,6 +878,7 @@ void do_unittests()
checkExpansions(m, 14, 23, "C", [ "Compiler" ]);
checkExpansions(m, 14, 32, "D", [ "DMD" ]);
checkExpansions(m, 22, 14, "m", [ "member", "mangleof" ]);
checkExpansions(m, 24, 11, "t", [ "task", "tupleof" ]);

source =
q{ // Line 1
Expand Down

0 comments on commit c669d6d

Please sign in to comment.