Skip to content

Instantly share code, notes, and snippets.

@thusser
thusser / qtyaml.h
Last active December 28, 2020 09:46 — forked from brcha/qtyaml.h
Qt Yaml support using yaml-cpp library
/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* ***** END LICENSE BLOCK ***** */
/*
@thusser
thusser / gist:49b31c7f9d9258702a6a0223220f3787
Created November 18, 2021 15:46
Python script to update version using Poetry, merge develop->main and create a new release/tag
#!/usr/bin/python3
import argparse
import re
import subprocess
import sys
from github import Github
import os