-
Notifications
You must be signed in to change notification settings - Fork 91
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
Specify versions of nimi-python modules independently #1900
Comments
There's also changelogs to consider. Maybe put individual changelogs in src/, so that we can maintain the version separately? For release tags, I believe we can just create individual releases and include the name of the package in the tag. There are other examples of monorepos that do this, like https://github.com/conventional-changelog/conventional-changelog/tags. I don't know how this might complicate the automated uploading of documentation to ReadTheDocs. That's something to look into. |
Clarification on the issue description: We were technically already capable of specifying different versions for each package, we just haven't. We could just use the latest of any package version, but that forces us to release everything, every time (in case other packages catch up in version with the latest versioned package in a release where it isn't bumped). Another difficulty with that is that it can be confusing to users looking for a specific version of the docs or repo that goes with a particular version of a module. |
An alternative to semver is discontinuous semver, a concept where the package version is the same across the repo, but not everything releases every time. |
Description of issue
Currently, all nimi-python modules release at the same time with the exact same version, regardless of what changes were made to each individual module.
This violates the spirit of semantic versioning.
To allow specifying of different individual versions, the following needs to be done:
Of course, the work to actually specify versions needs to be done, as well.
Tasks
The text was updated successfully, but these errors were encountered: