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
{{ message }}
This repository has been archived by the owner on May 7, 2024. It is now read-only.
People showed some interest in MarsMan when we did a bit of marketing, and other companies have used it to develop their own projects. For that reason, it'd be good to define a versioning system as soon as possible. People using MarsMan need to know which version are they using, what changes have been made in each version, if there are dependencies in a given version, etc.
The text was updated successfully, but these errors were encountered:
Releases is the Github way to ship software, they are related with git tags and you can provide a version detail for each one, including binary files.
The first step is create a tag with the commit and upload it to github (I think that a lightweight tag is enough)
git tag v1.0.0
git push origin v1.0.0
Now you can link the tag to a new release. Go to the releases section and select new draft, the tag you’ve created or input a version number, the branch, add a title, details and files. You've just created a release!
As Xavi suggested we can use npm package to release versions, I think it’s a good idea for styles and js (it’s easy to import this resources from a node_module) but I’m not sure how a dev could use the html or images inside a npm package. Anyway I think we can check it in the future.
People showed some interest in MarsMan when we did a bit of marketing, and other companies have used it to develop their own projects. For that reason, it'd be good to define a versioning system as soon as possible. People using MarsMan need to know which version are they using, what changes have been made in each version, if there are dependencies in a given version, etc.
The text was updated successfully, but these errors were encountered: