In hindsight, this would have caused a lot less headaches, and it probably wouldn't have affected how many blogs picked up the "news".
it's ok guys i'm going to maintain buildfeed from now on...
std::random_device rd;
std::mt19937 eng(rd());
std::uniform_int_distribution<> build(18000, 19000), patch(1000, 1010);
for(;;) {
std::cout << "19h1 " << build(eng) << "." << patch(eng) << std::endl;
}