Getting Updates
ShipClojure is regularly maintained with consistent weekly updates, including new features and bug fixes.
Setting Up Your Repository for Updates
To maintain your customized project while still being able to pull updates from the ShipClojure repository, follow these steps:
After cloning the ShipClojure repository, rename the origin remote to upstream:
Add your own repository as the origin:
Make your customizations and push to your repository as usual:
When you want to pull the latest ShipClojure updates:
Resolve any merge conflicts that arise, then commit and push to your repository.
Versioning
Each new commit will have an associated version number in the package.json indicating whether it is a new major release, bug fix or feature update.
New Major Release
10.0.0
Bug fix
10.0.1
New Feature
10.1.0
Last updated