1.8 KiB
1.8 KiB
Creating a new svg-edit release
Update the main project
- Update the VERSION variable in Makefile.
- Update the CHANGES file with a summary of all changes.
- Commit these changes with
git commit -m "Updating Makefile and CHANGES for release X.Y".
The above steps can be done on a fork and committed via a pull request.
Create the release binaries
- Ensure you are on the
masterbranch withgit checkout master. - From the root directory run
make. - Copy
build/svg-edit-X.Y/,build/svg-edit-X.Y.tar.gz, andbuild/svg-edit-X.Y.zipto a temporary directory. - Switch to the
gh-pagesbranch withgit checkout gh-pages. - Copy the
svg-edit-X.Ydirectory toreleases/svg-edit-X.Y. - Copy
svg-edit-X.Y.tar.gzandsvg-edit-X.Y.ziptocompressed/svg-edit-X.Y.tar.gzandcompressed/svg-edit-X.Y.zip. - Commit these changes with
git commit -m "Updating binary files for release X.Y". - Switch back to the
masterbranch withgit checkout master. - Ensure this step worked by visiting https://svgedit.github.io/svgedit/releases/svg-edit-X.Y/svg-editor.html
The above steps can be done on a fork and committed via a pull request.
Create the release on GitHub
- Go to
https://github.com/SVG-Edit/svgedit/releasesand selectDraft a new release. - Make the release target point at the commit where the makefile and changes were updated.
- Write a short description of the release and include a link to the live version: https://svgedit.github.io/svgedit/releases/svg-edit-X.Y/svg-editor.html
- Attach the
svg-edit-X.Y.zipandcompressed/svg-edit-X.Y.tar.gzfiles to the release. - Create the release!
You will need to be a member of the SVGEdit GitHub group to do this step.
Update the project docs
Update README.md and add a reference to your shiny new release.