Skip to content
This repository was archived by the owner on Mar 1, 2022. It is now read-only.

Commit 089edb1

Browse files
author
WebFreak001
committed
Bump to 2.10.2
1 parent cd43f5d commit 089edb1

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

package.bat

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
rem Building & compressing workspace-d for release inside a virtual machine with Windows 8 or above
2+
rem This will delete the folder C:\build
3+
4+
del /S /Q C:\build
5+
xcopy /e . C:\build
6+
pushd C:\build
7+
dub build --compiler=ldc2 --combined
8+
echo Y | del windows
9+
mkdir windows
10+
echo F | xcopy /f workspace-d.exe windows\workspace-d.exe
11+
echo F | xcopy /f libcurl.dll windows\libcurl.dll
12+
echo F | xcopy /f libeay32.dll windows\libeay32.dll
13+
echo F | xcopy /f ssleay32.dll windows\ssleay32.dll
14+
powershell -nologo -noprofile -command "& { Add-Type -A 'System.IO.Compression.FileSystem'; [IO.Compression.ZipFile]::CreateFromDirectory('windows', 'windows.zip'); }"
15+
popd
16+
echo F | xcopy C:\build\windows.zip windows.zip

source/workspaced/info.d

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import OS = std.system;
55
import std.json;
66
import std.conv;
77

8-
static immutable Version = [2, 10, 1];
8+
static immutable Version = [2, 10, 2];
99

1010
version (Windows) static assert(Compiler.name != "Digital Mars D",
1111
"Use LDC instead of DMD on Windows! See Also: https://github.com/Pure-D/code-d/issues/38");

0 commit comments

Comments
 (0)