Skip to content

Commit 0120518

Browse files
committed
3.0.11
1 parent a00a75a commit 0120518

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [3.0.11](https://github.com/wessberg/marshaller/compare/v3.0.10...v3.0.11) (2019-02-09)
2+
3+
4+
15
## [3.0.10](https://github.com/wessberg/marshaller/compare/v3.0.9...v3.0.10) (2019-02-07)
26

37

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<!-- SHADOW_SECTION_BADGES_START -->
1414

1515
<a href="https://npmcharts.com/compare/%40wessberg%2Fmarshaller?minimal=true"><img alt="Downloads per month" src="https://img.shields.io/npm/dm/%40wessberg%2Fmarshaller.svg" /></a>
16+
<a href="https://www.npmjs.com/package/%40wessberg%2Fmarshaller"><img alt="NPM version" src="https://badge.fury.io/js/%40wessberg%2Fmarshaller.svg" /></a>
1617
<a href="https://david-dm.org/wessberg/marshaller"><img alt="Dependencies" src="https://img.shields.io/david/wessberg%2Fmarshaller.svg" /></a>
1718
<a href="https://github.com/wessberg/marshaller/graphs/contributors"><img alt="Contributors" src="https://img.shields.io/github/contributors/wessberg%2Fmarshaller.svg" /></a>
1819
<a href="https://github.com/prettier/prettier"><img alt="code style: prettier" src="https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square" /></a>
@@ -64,8 +65,8 @@ You can consider this to be direct replacements for the `JSON.[stringify|parse]`
6465
- [Maintainers](#maintainers)
6566
- [Backers](#backers)
6667
- [Patreon](#patreon)
67-
- [FAQ](#faq)
68-
- [Why are functions not supported](#why-are-functions-not-supported)
68+
- [FAQ](#faq)
69+
- [Why are functions not supported](#why-are-functions-not-supported)
6970
- [License](#license)
7071

7172
<!-- SHADOW_SECTION_TOC_END -->
@@ -124,7 +125,7 @@ import {marshall, demarshall} from "@wessberg/marshaller";
124125

125126
// Marshall some complex data that wouldn't normally be JSON serializable
126127
const marshallResult = marshall({
127-
a: new Set([1, 2, /foo/, {a: new Date(), b: new Float32Array([1, 2, 3])}])
128+
a: new Set([1, 2, /foo/, {a: new Date(), b: new Float32Array([1, 2, 3])}])
128129
});
129130

130131
// Demarshall it to get a structurally identical representation back of the data
@@ -163,7 +164,7 @@ Do you want to contribute? Awesome! Please follow [these recommendations](./CONT
163164

164165
<!-- SHADOW_SECTION_FAQ_START -->
165166

166-
### FAQ
167+
## FAQ
167168

168169
<!-- SHADOW_SECTION_FAQ_END -->
169170

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wessberg/marshaller",
3-
"version": "3.0.10",
3+
"version": "3.0.11",
44
"description": "A lightweight way to serialize and deserialize complex data types non-destructively",
55
"scripts": {
66
"generate:readme": "scaffold readme --yes",

0 commit comments

Comments
 (0)