You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On our path towards a 1.0 release it would help to start with a 0.1 release soon. Ideally, we'd do this in a systematic way and first discuss how we want the process to look like initially.
This doesn't look as simple as I would have hoped, but it's not terrible. What do you think?
I agree with this sentiment.
I'm not entirely sure about having release candidates. But I think this will help us coordinate testing better. At the moment it's a little bit arbitrary though the quality is good enough that every state that lands on master is a release in a sense.
Relation to Core
We should then think about when the canonical point should be to update the tree in Core
Updating the Core tree after a release sounds natural and is certainly a good idea.
Updating the Core tree after a RC will get us some more testing (and maybe feedback on the API).
Versioning Scheme
An aspect that we should talk about is the versioning scheme. I don't have a lot of experience in this but libtool can do some rather complex stuff:
On our path towards a 1.0 release it would help to start with a 0.1 release soon. Ideally, we'd do this in a systematic way and first discuss how we want the process to look like initially.
It would make sense for the process to be similar to Bitcoin Core's. Here are some suggestions, based on my understanding of bitcoin-maintainer-tools/make-tag.py and bitcoin/doc/release-process.md.
We would copy the start of Core's configure.ac into ours:
and replace our
AC_INIT
withWe can print the version at the end of the configure script and a warning if
RELEASE
is not true.Now in order to create a release candidate we
VERSIONS
in configure.ac (includingRC=1
)IS_RELEASE
totrue
andVERSION_RC
to0
This doesn't look as simple as I would have hoped, but it's not terrible. What do you think?
The text was updated successfully, but these errors were encountered: