-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add doc/release-process.md #856
Comments
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 CoreWe should then think about when the canonical point should be to update the tree in Core
Versioning SchemeAn 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: I wonder how this is related to #817. It's for sure related to #844, which I'm only realizing now. |
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: