Skip to content
This repository was archived by the owner on Jan 13, 2025. It is now read-only.

Commit 39632bb

Browse files
committed
passim: update for 1.0.0 release
1 parent 6f7064c commit 39632bb

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Change Log
22

3-
## [Unreleased]
3+
## [1.0.0] - 2017-12-17
4+
5+
* Minimum Node version increased to 4.5 to support dependency
6+
on
7+
[Buffer.alloc()](https://nodejs.org/dist/latest-v4.x/docs/api/buffer.html#buffer_class_method_buffer_alloc_size_fill_encoding).
8+
* Removed [patch][node:issue#3994] for [ancient buffer bug][node:issue#3992]
9+
* Update to ES6 classes and other features
10+
* Documentation clarifications.
11+
* Update dependent packages.
12+
* Switch to [npm:eslint] and deal with fallout.
413

514
## [0.13.0] - 2016-03-27
615

@@ -12,7 +21,7 @@
1221

1322
* Disable coverage testing for [patchIssue3992][doc:patchIssue3992] to
1423
avoid taking a penalty on node versions that have been updated.
15-
24+
1625
## [0.12.0] - 2016-03-08
1726

1827
* **API** Replace `setClassLayout` with [bindConstructorLayout][doc:bindConstructorLayout].
@@ -101,12 +110,14 @@
101110
list.
102111
* Document [destination parameter to decode][issue#2].
103112
* Allow [user-defined name for union discriminators][issue#1].
104-
113+
105114
## 0.1.0 - 2015-10-25
106115

107116
* Initial release.
108117

109-
[Unreleased]: https://github.com/pabigot/buffer-layout/compare/v0.13.0...next
118+
[1.0.0]: https://github.com/pabigot/buffer-layout/compare/v0.13.0...v1.0.0
119+
[0.13.0]: https://github.com/pabigot/buffer-layout/compare/v0.12.0...v0.13.0
120+
[0.12.1]: https://github.com/pabigot/buffer-layout/compare/v0.12.0...v0.12.1
110121
[0.12.0]: https://github.com/pabigot/buffer-layout/compare/v0.11.0...v0.12.0
111122
[0.11.0]: https://github.com/pabigot/buffer-layout/compare/v0.10.0...v0.11.0
112123
[0.10.0]: https://github.com/pabigot/buffer-layout/compare/v0.9.0...v0.10.0
@@ -122,6 +133,7 @@
122133
[doc:bindConstructorLayout]: http://pabigot.github.io/buffer-layout/module-Layout.html#.bindConstructorLayout
123134
[doc:BitField]: http://pabigot.github.io/buffer-layout/module-Layout-BitField.html
124135
[doc:BitStructure]: http://pabigot.github.io/buffer-layout/module-Layout-BitStructure.html
136+
[doc:BitStructure.fieldFor]: http://pabigot.github.io/buffer-layout/module-Layout-BitStructure.html#fieldFor
125137
[doc:Blob]: http://pabigot.github.io/buffer-layout/module-Layout-Blob.html
126138
[doc:Blob.length]: http://pabigot.github.io/buffer-layout/module-Layout-Blob.html#length
127139
[doc:Boolean]: http://pabigot.github.io/buffer-layout/module-Layout-Boolean.html
@@ -160,8 +172,10 @@
160172
[ci:travis]: https://travis-ci.org/pabigot/buffer-layout
161173
[ci:coveralls]: https://coveralls.io/github/pabigot/buffer-layout
162174
[node:issue#3992]: https://github.com/nodejs/node/issues/3992
175+
[node:issue#3994]: https://github.com/nodejs/node/issues/3994
163176
[npm:istanbul]: https://www.npmjs.com/package/istanbul
164177
[npm:jscs]: https://www.npmjs.com/package/jscs
178+
[npm:eslint]: https://www.npmjs.com/package/eslint
165179

166180
<!---
167181
# Local Variables:

lib/Layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* The MIT License (MIT)
22
*
3-
* Copyright (c) 2015 Peter A. Bigot
3+
* Copyright 2015-2017 Peter A. Bigot
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy
66
* of this software and associated documentation files (the "Software"), to deal

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "buffer-layout",
3-
"version": "0.14.0-next",
3+
"version": "1.0.0",
44
"description": "Translation between JavaScript values and Buffers",
55
"keywords": [
66
"Buffer",

0 commit comments

Comments
 (0)