l0bsterssg

node.js static responsive blog post generator
Log | Files | Refs | README

CHANGELOG.md (4571B)


      1 # Release history
      2 
      3 All notable changes to this project will be documented in this file.
      4 
      5 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
      6 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
      7 
      8 <details>
      9   <summary><strong>Guiding Principles</strong></summary>
     10 
     11 - Changelogs are for humans, not machines.
     12 - There should be an entry for every single version.
     13 - The same types of changes should be grouped.
     14 - Versions and sections should be linkable.
     15 - The latest version comes first.
     16 - The release date of each versions is displayed.
     17 - Mention whether you follow Semantic Versioning.
     18 
     19 </details>
     20 
     21 <details>
     22   <summary><strong>Types of changes</strong></summary>
     23 
     24 Changelog entries are classified using the following labels _(from [keep-a-changelog](http://keepachangelog.com/)_):
     25 
     26 - `Added` for new features.
     27 - `Changed` for changes in existing functionality.
     28 - `Deprecated` for soon-to-be removed features.
     29 - `Removed` for now removed features.
     30 - `Fixed` for any bug fixes.
     31 - `Security` in case of vulnerabilities.
     32 
     33 </details>
     34 
     35 ## [6.0.3] - 2020-01-16
     36 
     37 - Merge pull request #31 for issue #30
     38 
     39 ## [6.0.0] - 2017-10-13
     40 
     41 - refactor code to be more performant
     42 - refactor benchmarks
     43 
     44 ## [5.1.0] - 2017-10-13
     45 
     46 **Added**
     47 
     48 - Merge pull request #15 from aretecode/patch-1
     49 - adds support and tests for string & array iterators
     50 
     51 **Changed**
     52 
     53 - updates benchmarks
     54 
     55 ## [5.0.2] - 2017-08-02
     56 
     57 - Merge pull request #14 from struct78/master
     58 - Added `undefined` check
     59 
     60 ## [5.0.0] - 2017-06-21
     61 
     62 - Merge pull request #12 from aretecode/iterator
     63 - Set Iterator + Map Iterator
     64 - streamline `isbuffer`, minor edits
     65 
     66 ## [4.0.0] - 2017-05-19
     67 
     68 - Merge pull request #8 from tunnckoCore/master
     69 - update deps
     70 
     71 ## [3.2.2] - 2017-05-16
     72 
     73 - fix version
     74 
     75 ## [3.2.1] - 2017-05-16
     76 
     77 - add browserify
     78 
     79 ## [3.2.0] - 2017-04-25
     80 
     81 - Merge pull request #10 from ksheedlo/unrequire-buffer
     82 - add `promise` support and tests
     83 - Remove unnecessary `Buffer` check
     84 
     85 ## [3.1.0] - 2016-12-07
     86 
     87 - Merge pull request #7 from laggingreflex/err
     88 - add support for `error` and tests
     89 - run update
     90 
     91 ## [3.0.4] - 2016-07-29
     92 
     93 - move tests
     94 - run update
     95 
     96 ## [3.0.3] - 2016-05-03
     97 
     98 - fix prepublish script
     99 - remove unused dep
    100 
    101 ## [3.0.0] - 2015-11-17
    102 
    103 - add typed array support
    104 - Merge pull request #5 from miguelmota/typed-arrays
    105 - adds new tests
    106 
    107 ## [2.0.1] - 2015-08-21
    108 
    109 - use `is-buffer` module
    110 
    111 ## [2.0.0] - 2015-05-31
    112 
    113 - Create fallback for `Array.isArray` if used as a browser package
    114 - Merge pull request #2 from dtothefp/patch-1
    115 - Merge pull request #3 from pdehaan/patch-1
    116 - Merge branch 'master' of https://github.com/chorks/kind-of into chorks-master
    117 - optimizations, mostly date and regex
    118 
    119 ## [1.1.0] - 2015-02-09
    120 
    121 - adds `buffer` support
    122 - adds tests for `buffer`
    123 
    124 ## [1.0.0] - 2015-01-19
    125 
    126 - update benchmarks
    127 - optimizations based on benchmarks
    128 
    129 ## [0.1.2] - 2014-10-26
    130 
    131 - return `typeof` value if it's not an object. very slight speed improvement
    132 - use `.slice`
    133 - adds benchmarks
    134 
    135 ## [0.1.0] - 2014-9-26
    136 
    137 - first commit
    138 
    139 [6.0.0]: https://github.com/jonschlinkert/kind-of/compare/5.1.0...6.0.0
    140 [5.1.0]: https://github.com/jonschlinkert/kind-of/compare/5.0.2...5.1.0
    141 [5.0.2]: https://github.com/jonschlinkert/kind-of/compare/5.0.1...5.0.2
    142 [5.0.1]: https://github.com/jonschlinkert/kind-of/compare/5.0.0...5.0.1
    143 [5.0.0]: https://github.com/jonschlinkert/kind-of/compare/4.0.0...5.0.0
    144 [4.0.0]: https://github.com/jonschlinkert/kind-of/compare/3.2.2...4.0.0
    145 [3.2.2]: https://github.com/jonschlinkert/kind-of/compare/3.2.1...3.2.2
    146 [3.2.1]: https://github.com/jonschlinkert/kind-of/compare/3.2.0...3.2.1
    147 [3.2.0]: https://github.com/jonschlinkert/kind-of/compare/3.1.0...3.2.0
    148 [3.1.0]: https://github.com/jonschlinkert/kind-of/compare/3.0.4...3.1.0
    149 [3.0.4]: https://github.com/jonschlinkert/kind-of/compare/3.0.3...3.0.4
    150 [3.0.3]: https://github.com/jonschlinkert/kind-of/compare/3.0.0...3.0.3
    151 [3.0.0]: https://github.com/jonschlinkert/kind-of/compare/2.0.1...3.0.0
    152 [2.0.1]: https://github.com/jonschlinkert/kind-of/compare/2.0.0...2.0.1
    153 [2.0.0]: https://github.com/jonschlinkert/kind-of/compare/1.1.0...2.0.0
    154 [1.1.0]: https://github.com/jonschlinkert/kind-of/compare/1.0.0...1.1.0
    155 [1.0.0]: https://github.com/jonschlinkert/kind-of/compare/0.1.2...1.0.0
    156 [0.1.2]: https://github.com/jonschlinkert/kind-of/compare/0.1.0...0.1.2
    157 [0.1.0]: https://github.com/jonschlinkert/kind-of/commit/2fae09b0b19b1aadb558e9be39f0c3ef6034eb87
    158 
    159 [Unreleased]: https://github.com/jonschlinkert/kind-of/compare/0.1.2...HEAD
    160 [keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog