Re: Nim git branch model

2019-09-23 Thread jxy
Contrary to what has been said here, version-1-0 branched off devel, and version-0-20 looks dead to me. Congratulations anyway!

Re: Nim git branch model

2019-06-27 Thread miran
`devel` is the main (trunk) branch. All the development (and pull requests) happens against that branch, and it is "cutting edge" \-- Nim built from it has version `0.20.99`. `version-0-20` branch contains backported (cherry-picked) bugfixes from devel. Currently it is at version `0.20.1`,

Re: Nim git branch model

2019-06-27 Thread jxy
Thanks. Can we have the branch model documented somewhere? For now I will try to make sure our code is compatible to both `devel` and `version-0-20`.

Re: Nim git branch model

2019-06-26 Thread Araq
`master` is dead and should be removed, `devel` will become 0.21.0, version-0-20 will become `0.20.2`. 0.20.x is much more likely to become v1 than 0.21.0 is.

Nim git branch model

2019-06-26 Thread jxy
What are the purposes of the git branches? I see `devel` is actively worked on (mostly bug fixes), `version-0-20` is about a week old (some bug fixes from `devel`?), `master` is stuck in 0.19. What would be the hypothetical `v1.0` branched off of?