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.

CHANGELOG.md 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. # Release history
  2. All notable changes to this project will be documented in this file.
  3. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
  4. and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
  5. <details>
  6. <summary><strong>Guiding Principles</strong></summary>
  7. - Changelogs are for humans, not machines.
  8. - There should be an entry for every single version.
  9. - The same types of changes should be grouped.
  10. - Versions and sections should be linkable.
  11. - The latest version comes first.
  12. - The release date of each versions is displayed.
  13. - Mention whether you follow Semantic Versioning.
  14. </details>
  15. <details>
  16. <summary><strong>Types of changes</strong></summary>
  17. Changelog entries are classified using the following labels _(from [keep-a-changelog](http://keepachangelog.com/)_):
  18. - `Added` for new features.
  19. - `Changed` for changes in existing functionality.
  20. - `Deprecated` for soon-to-be removed features.
  21. - `Removed` for now removed features.
  22. - `Fixed` for any bug fixes.
  23. - `Security` in case of vulnerabilities.
  24. </details>
  25. ## [3.0.0] - 2018-04-08
  26. v3.0 is a complete refactor, resulting in a faster, smaller codebase, with fewer deps, and a more accurate parser and compiler.
  27. **Breaking Changes**
  28. - The undocumented `.makeRe` method was removed
  29. **Non-breaking changes**
  30. - Caching was removed
  31. ## [2.3.2] - 2018-04-08
  32. - start refactoring
  33. - cover sets
  34. - better range handling
  35. ## [2.3.1] - 2018-02-17
  36. - Remove unnecessary escape in Regex. (#14)
  37. ## [2.3.0] - 2017-10-19
  38. - minor code reorganization
  39. - optimize regex
  40. - expose `maxLength` option
  41. ## [2.2.1] - 2017-05-30
  42. - don't condense when braces contain extglobs
  43. ## [2.2.0] - 2017-05-28
  44. - ensure word boundaries are preserved
  45. - fixes edge case where extglob characters precede a brace pattern
  46. ## [2.1.1] - 2017-04-27
  47. - use snapdragon-node
  48. - handle edge case
  49. - optimizations, lint
  50. ## [2.0.4] - 2017-04-11
  51. - pass opts to compiler
  52. - minor optimization in create method
  53. - re-write parser handlers to remove negation regex
  54. ## [2.0.3] - 2016-12-10
  55. - use split-string
  56. - clear queue at the end
  57. - adds sequences example
  58. - add unit tests
  59. ## [2.0.2] - 2016-10-21
  60. - fix comma handling in nested extglobs
  61. ## [2.0.1] - 2016-10-20
  62. - add comments
  63. - more tests, ensure quotes are stripped
  64. ## [2.0.0] - 2016-10-19
  65. - don't expand braces inside character classes
  66. - add quantifier pattern
  67. ## [1.8.5] - 2016-05-21
  68. - Refactor (#10)
  69. ## [1.8.4] - 2016-04-20
  70. - fixes https://github.com/jonschlinkert/micromatch/issues/66
  71. ## [1.8.0] - 2015-03-18
  72. - adds exponent examples, tests
  73. - fixes the first example in https://github.com/jonschlinkert/micromatch/issues/38
  74. ## [1.6.0] - 2015-01-30
  75. - optimizations, `bash` mode:
  76. - improve path escaping
  77. ## [1.5.0] - 2015-01-28
  78. - Merge pull request #5 from eush77/lib-files
  79. ## [1.4.0] - 2015-01-24
  80. - add extglob tests
  81. - externalize exponent function
  82. - better whitespace handling
  83. ## [1.3.0] - 2015-01-24
  84. - make regex patterns explicity
  85. ## [1.1.0] - 2015-01-11
  86. - don't create a match group with `makeRe`
  87. ## [1.0.0] - 2014-12-23
  88. - Merge commit '97b05f5544f8348736a8efaecf5c32bbe3e2ad6e'
  89. - support empty brace syntax
  90. - better bash coverage
  91. - better support for regex strings
  92. ## [0.1.4] - 2014-11-14
  93. - improve recognition of bad args, recognize mismatched argument types
  94. - support escaping
  95. - remove pathname-expansion
  96. - support whitespace in patterns
  97. ## [0.1.0]
  98. - first commit
  99. [2.3.2]: https://github.com/micromatch/braces/compare/2.3.1...2.3.2
  100. [2.3.1]: https://github.com/micromatch/braces/compare/2.3.0...2.3.1
  101. [2.3.0]: https://github.com/micromatch/braces/compare/2.2.1...2.3.0
  102. [2.2.1]: https://github.com/micromatch/braces/compare/2.2.0...2.2.1
  103. [2.2.0]: https://github.com/micromatch/braces/compare/2.1.1...2.2.0
  104. [2.1.1]: https://github.com/micromatch/braces/compare/2.1.0...2.1.1
  105. [2.1.0]: https://github.com/micromatch/braces/compare/2.0.4...2.1.0
  106. [2.0.4]: https://github.com/micromatch/braces/compare/2.0.3...2.0.4
  107. [2.0.3]: https://github.com/micromatch/braces/compare/2.0.2...2.0.3
  108. [2.0.2]: https://github.com/micromatch/braces/compare/2.0.1...2.0.2
  109. [2.0.1]: https://github.com/micromatch/braces/compare/2.0.0...2.0.1
  110. [2.0.0]: https://github.com/micromatch/braces/compare/1.8.5...2.0.0
  111. [1.8.5]: https://github.com/micromatch/braces/compare/1.8.4...1.8.5
  112. [1.8.4]: https://github.com/micromatch/braces/compare/1.8.0...1.8.4
  113. [1.8.0]: https://github.com/micromatch/braces/compare/1.6.0...1.8.0
  114. [1.6.0]: https://github.com/micromatch/braces/compare/1.5.0...1.6.0
  115. [1.5.0]: https://github.com/micromatch/braces/compare/1.4.0...1.5.0
  116. [1.4.0]: https://github.com/micromatch/braces/compare/1.3.0...1.4.0
  117. [1.3.0]: https://github.com/micromatch/braces/compare/1.2.0...1.3.0
  118. [1.2.0]: https://github.com/micromatch/braces/compare/1.1.0...1.2.0
  119. [1.1.0]: https://github.com/micromatch/braces/compare/1.0.0...1.1.0
  120. [1.0.0]: https://github.com/micromatch/braces/compare/0.1.4...1.0.0
  121. [0.1.4]: https://github.com/micromatch/braces/compare/0.1.0...0.1.4
  122. [Unreleased]: https://github.com/micromatch/braces/compare/0.1.0...HEAD
  123. [keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog