[6a3a178] | 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 | ## [2.0.0] - 2017-04-20
|
---|
| 36 |
|
---|
| 37 | ### Changed
|
---|
| 38 |
|
---|
| 39 | - Now supports data descriptors in addition to accessor descriptors.
|
---|
| 40 | - Now uses [Reflect.defineProperty][reflect] when available, otherwise falls back to [Object.defineProperty][object].
|
---|
| 41 |
|
---|
| 42 | ## [1.0.0] - 2017-04-20
|
---|
| 43 |
|
---|
| 44 | - stable release
|
---|
| 45 |
|
---|
| 46 | ## [0.2.5] - 2015-08-31
|
---|
| 47 |
|
---|
| 48 | - use is-descriptor
|
---|
| 49 |
|
---|
| 50 | ## [0.2.3] - 2015-08-29
|
---|
| 51 |
|
---|
| 52 | - check keys length
|
---|
| 53 |
|
---|
| 54 | ## [0.2.2] - 2015-08-27
|
---|
| 55 |
|
---|
| 56 | - ensure val is an object
|
---|
| 57 |
|
---|
| 58 | ## [0.2.1] - 2015-08-27
|
---|
| 59 |
|
---|
| 60 | - support functions
|
---|
| 61 |
|
---|
| 62 | ## [0.2.0] - 2015-08-27
|
---|
| 63 |
|
---|
| 64 | - support get/set
|
---|
| 65 | - update docs
|
---|
| 66 |
|
---|
| 67 | ## [0.1.0] - 2015-08-12
|
---|
| 68 |
|
---|
| 69 | - first commit
|
---|
| 70 |
|
---|
| 71 | [2.0.0]: https://github.com/jonschlinkert/define-property/compare/1.0.0...2.0.0
|
---|
| 72 | [1.0.0]: https://github.com/jonschlinkert/define-property/compare/0.2.5...1.0.0
|
---|
| 73 | [0.2.5]: https://github.com/jonschlinkert/define-property/compare/0.2.3...0.2.5
|
---|
| 74 | [0.2.3]: https://github.com/jonschlinkert/define-property/compare/0.2.2...0.2.3
|
---|
| 75 | [0.2.2]: https://github.com/jonschlinkert/define-property/compare/0.2.1...0.2.2
|
---|
| 76 | [0.2.1]: https://github.com/jonschlinkert/define-property/compare/0.2.0...0.2.1
|
---|
| 77 | [0.2.0]: https://github.com/jonschlinkert/define-property/compare/0.1.3...0.2.0
|
---|
| 78 |
|
---|
| 79 | [keep-a-changelog]: https://github.com/olivierlacan/keep-a-changelog
|
---|
| 80 |
|
---|
| 81 | [object]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/defineProperty
|
---|
| 82 | [reflect]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect/defineProperty
|
---|