-
Notifications
You must be signed in to change notification settings - Fork 34
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
versioning and publishing workflow #9
Conversation
Can you also add badges with CI status to the README? See comment for example. |
rubicon/version.py
Outdated
MINOR = 1 | ||
MICRO = 0 | ||
|
||
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mmccarty - we suggested starting at v0.1.0
- do you agree ?
# 3 - Alpha | ||
# 4 - Beta | ||
# 5 - Production/Stable | ||
'Development Status :: 4 - Beta', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mmccarty - we were debating between Beta, or Production/Stable -- what do you think?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think Beta is fine for now given that we are just now open sourcing and might get some activity that would make things less stable.
add contributor readme button removing badge temporarily lowercase
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
What