Santiago Fraire Willemoes

Results 299 comments of Santiago Fraire Willemoes

`cz changelog --incremental` is usually smart enough to include a header in your changelog. You can create something like: Try this `CHANGELOG.md`: ``` # CHANGELOG This is the changelog for...

Hello! Here's the list from questionary available prompts: https://github.com/tmbo/questionary/blob/master/questionary/prompts/__init__.py#L9 `list` and `input` are possible values, I think questionary now prefers select and text as you mention, but questionary allows them....

Even if we change dependencies, I would keep the same interface of questionary, so your package shouldn't have any problems in the future. So I'd say you can include your...

Hey sorry for the late reply. 1. Fetching issues is an API call, so using the git `ssh` wouldn't be possible. You could use the same git password to encrypt...

This is actually super interesting. I wonder if it doesn't introduce any security issues. Each of those functions would be called with the arguments, right? Like if you execute the...

Hey @janw I'm interested. I'd like to see it. Regards!

Thanks for reporting this issue. The main problem, I think, arises because we are using [PEP0440](https://www.python.org/dev/peps/pep-0440/) for anything else than the mandatory parts of the version. In order to fix...

I've run some tests and semver from poetry will be useful: ``` In [1]: from semver.version import Version In [3]: v = Version.parse("1.0.0-alpha") In [7]: v.__dict__ Out[7]: {'_major': 1, '_precision':...

Unfortunately I haven't had time to work on this, and I've just recently started working on this. But I do want to have it, because it will play well with...

I find it a bit hard, because the "magic" is tied to markdown. Commitizen can detect your latest version by reading the titles (`#`), without affecting extra text nor your...