vote up 7 vote down star
2

In regards to hobby projects, at what point do you consider it to be mature enough to release the first version to the general public? Do you wait until you have all of the features implemented, or do you release it once you have solid functionality and keep working on it?

Also, what are some of the differences between releasing a hobby project as an open source project?

flag

7 Answers

vote up 7 vote down check

You're better off releasing it BEFORE all the features you want to implement have been implemented. This allows you to test what's already in the code before you start to add more stuff. Just make sure to not let the version number get above 1.0 until your app is feature complete and put plenty of warnings that things aren't set in stone and could very well change later on.

EDIT: Also, read this: producing open source software. The guy that wrote it has lots of experience in the open source world and there's a lot to learn from in there about versioning and just about every other subject that could come up.

link|flag
Great link, thanks! – Simon Steele Sep 10 '08 at 14:12
I agree that is an excellent link. – Rob Sep 16 '08 at 12:13
vote up 2 vote down

At idea conception. Given sites like CodePlex and SourceForge, you can "release" your code via open access to the SCM - and when you think it's "ready", you can package it up as a release on the site.

link|flag
vote up 12 vote down

Early and Often for both Open Source and sharing your own toys with the world.

You just need a thick skin to cope with all the muppets who've never released anything telling you how they believe your father is unknown and you can't code your way out of a paperbag. It's character building and yes I'm bitter.

link|flag
vote up 1 vote down

I would say release it when you have enough functionality working to make the application actually useful.

Also, make sure what you do release is bug free as far as you know. Users tend to not want to use buggy software.

link|flag
vote up 1 vote down

Do you anticipate a lot of people using your product as soon as it's made public? If not, I say release it.

If you'll only have a small user base to start with, consider it beta and solicit feedback from your users.

link|flag
vote up 1 vote down

As early as you're confident it's a project you're going to spend some time on. Sites such as Sourceforge aren't only a way for you to make your "finished product" [1] available but they save you having to maintain your own infrastructure - SCM, bug tracking (and even if you're the only developer for some time, you really want those).

Most of the projects on Sourceforge and similar sites are pre-beta but that really doesn't matter because, since the state of completeness is advertised for every project, nobody gets disappointed. I've picked up and begun using half-working pre-alpha-quality tools before and was very grateful they were published because there were no alternatives and I would have otherwise had to start from scratch myself. In a couple of cases, I had to make fixes to get the tools working for my case which I then fed back to the author. This is how many projects gain traction.

[1] There's no such thing.

link|flag
vote up 0 vote down

My advice is to either release something publicly once it's reasonably stable -or- the other extreme: have it public from the very beginning and show the evolution. Either way is the same effect -- you don't receive many complaints that someone expects the software to be stable when it isn't.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.