Skip to content

Commit

Permalink
v0.7.5, just hotfixes to v0.7.4
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
WebFreak001 committed Sep 25, 2023
1 parent 5bed0fc commit dbf124d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ci/validate_version.d
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ void main()
enforce(res.status == 0, "serve-d --version didn't return status 0");

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

auto space = output.indexOfAny(" \t\r\n");
if (space != -1)
Expand Down
2 changes: 1 addition & 1 deletion source/served/info.d
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module served.info;

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

0 comments on commit dbf124d

Please sign in to comment.