Skip to content

Commit dbf124d

Browse files
committed
v0.7.5, just hotfixes to v0.7.4
- upgrades requests library to work on newer linux distros - fixes libdparse token memory corruption - slightly newer D-Scanner version not intented to support D syntax newer than a year ago, use 0.8.x for that
1 parent 5bed0fc commit dbf124d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/validate_version.d

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ void main()
2525
enforce(res.status == 0, "serve-d --version didn't return status 0");
2626

2727
string output = res.output.strip;
28-
enforce(output.startsWith("serve-d standalone v"), "serve-d --version didn't begin with `serve-d standalone v`");
29-
output = output["serve-d standalone v".length .. $];
28+
enforce(output.startsWith("serve-d v"), "serve-d --version didn't begin with `serve-d v`");
29+
output = output["serve-d v".length .. $];
3030

3131
auto space = output.indexOfAny(" \t\r\n");
3232
if (space != -1)

source/served/info.d

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module served.info;
22

3-
static immutable Version = [0, 7, 4];
3+
static immutable Version = [0, 7, 5];
44
static immutable VersionSuffix = ""; // like beta.1

0 commit comments

Comments
 (0)