Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

semantic-versioning.md 1.4KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Semantic versioning
  2. Due to the nature of stylelint as a code quality tool, we follow a specific flavor of [semantic versioning](http://semver.org).
  3. Any minor update may report more errors than the previous release. As such, we recommend using the tilde (`~`) in `package.json` e.g. `"stylelint": "~7.2.0"` to guarantee the results of your builds.
  4. ## Patch release
  5. Intended not to break your lint build:
  6. - a bug fix in a rule that results in stylelint reporting fewer errors
  7. - a bug fix to the CLI or core (including formatters)
  8. - improvements to documentation
  9. - non-user-facing changes such as refactoring code or modifying tests
  10. - re-releasing after a failed release (i.e., publishing a release that doesn't work for anyone)
  11. ## Minor release
  12. Might break your lint build:
  13. - a bug fix in a rule that results in stylelint reporting more errors
  14. - a new rule is created
  15. - a new option to an existing rule that does not result in stylelint reporting more errors by default
  16. - an existing rule is deprecated
  17. - a new CLI capability is created
  18. - a new public API capability is created
  19. - a new formatter is created
  20. ## Major release
  21. Likely to break your lint build:
  22. - a change in the documented behavior of an existing rule results in stylelint reporting more errors by default
  23. - an existing rule is removed
  24. - an existing formatter is removed
  25. - part of the CLI is removed or changed in an incompatible way
  26. - part of the public API is removed or changed in an incompatible way