This repository was archived by the owner on Dec 14, 2018. It is now read-only.
Releases: makenew/libsass-package
Releases · makenew/libsass-package
v2.0.2
v2.0.1
- Fix url and add semver link to CHANGELOG.
- Update badge alt text.
v2.0.0
- Quickly bootstrap your new project with
./makenew.sh.
Updating exiting projects
This version introduces makenew.sh which automatically bootstraps new projects.
Most of the boilerplate which is normally replaced when making a new project has thus been changed.
This will generate a lot of merge conflicts for exiting projects updating to this version, however all of these can be safely ignored.
Recommend update procedure
-
Update normally to libsass-package-v1.3.0 by following the instructions in the README (merge in the
libsass-package-v1.3.0tag instead ofupstream/master). -
Merge in this version, but only use your file versions. For example,
$ git fetch upstream $ git merge --no-commit libsass-package-v2.0.0 $ git reset . $ git checkout --ours . $ git clean -fdx $ git commit -
Update to the latest release normally.
Alternative update option
Depending on how complicated your merge conflicts are, this manual way may be easier.
- Checkout this version (or the latest one) into a separate branch, say
makenew. - Run
./makenew.shand enter in the values as if you were recreating your work from scratch. Commit the results. - Create a new branch from your
masterand merge themakenewbranch (do not create a merge commit yet). Compare themakenewbranch to yourmasterbranch usinggit diffand whatever git workflow makes sense. One option is togit resetandgit checkout, then update each file one at a time until you are satisfied with the merge.
v1.3.0
- Updated all Sass references to libSass:
this project now lives at makenew/libsass-package. - Use
testandstartnpm scripts overinstall. - Add all metadata to
package.jsonand bump dependency versions. - Update metadata in
bower.json. - Add repository to
bower.json. - Improve README and add npm badge.
- Update
.gitignore. - Update Change Log to follow keepachangelog.com.
v1.2.3
- Update Updating section in README.
v1.2.2
- Only test against stable node.
v1.2.0
- Update badges.
- Use three backticks for code blocks in README.
- Use io.js for Travis CI.