Bump Dub version (mostly only with major release, compare e.g. dub v1.26.0…stable to check for bugfixes and minor releases)
(status quo: 2 weeks beta+rc phase for major, 1 week beta for minor releases)
(status quo: 2 weeks beta+rc phase for major, 1 week beta for minor releases)
| #include <iostream> | |
| // clang-format off | |
| #include <gcc-plugin.h> | |
| #include <context.h> | |
| #include <plugin-version.h> | |
| #include <tree.h> | |
| #include <gimple.h> | |
| #include <tree-pass.h> | |
| #include <gimple-iterator.h> |
| #!/usr/bin/env bash | |
| set -ueo pipefail | |
| set -x | |
| ROOT="$PWD" | |
| LATEST_D_VER=v$(curl -fsS http://downloads.dlang.org/releases/LATEST) | |
| BUILD_LDC_VER=v1.32.0 | |
| D_VER=v2.110.0-beta.1 |
| import std.stdio, std.file, std.path, std.range, std.string, std.algorithm ; | |
| string[] filterList = ["./Makefile.in", "./Makefile.am", "./index.d", "./unittest.d", | |
| "./libgphobos.spec.in", "./LICENSE_1_0.txt", "./std/experimental/note.md"]; | |
| struct Files | |
| { | |
| string[] baseList; | |
| string[][string] sysList; | |
| } |
| import std.stdio, std.file, std.path, std.range, std.string, std.algorithm ; | |
| string[] filterList = ["./Makefile.in", "./gcc/config.d.in", "./gcc/libbacktrace.d.in", | |
| "./Makefile.am", "./LICENSE", "./rt/dylib_fixes.c"]; | |
| struct Files | |
| { | |
| string[] baseList, cppList, gcList, gcStubList; | |
| string[][string] sysList; | |
| } |
| import std.stdio; | |
| import core.stdc.limits; | |
| import std.math; | |
| uint WORLD; | |
| uint LASTWORLD; | |
| uint NEWWORLD; | |
| uint ROW_L; |