Skip to content

Commit

Permalink
docs(changelog): release 5.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
colinking committed Jan 25, 2019
1 parent fb368f6 commit a3825a7
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [5.1.4](https://github.com/segmentio/typewriter/compare/5.1.3...5.1.4) (2019-01-25)


### Bug Fixes

* apply strictNullCheck fix in analytics.js client ([#46](https://github.com/segmentio/typewriter/issues/46)) ([fb368f6](https://github.com/segmentio/typewriter/commit/fb368f6)), closes [#43](https://github.com/segmentio/typewriter/issues/43)
* move husky to dev dependencies ([#45](https://github.com/segmentio/typewriter/issues/45)) ([5a6ef07](https://github.com/segmentio/typewriter/commit/5a6ef07))



## [5.1.3](https://github.com/segmentio/typewriter/compare/5.1.2...5.1.3) (2019-01-23)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ static id NSNullify(id _Nullable x) {
NSDictionary<NSString *, id> *typewriterContext = @{
@"typewriter": @{
@"name": @"gen-ios",
@"version": @"5.1.3"
@"version": @"5.1.4"
}
};
NSMutableDictionary *context = [NSMutableDictionary dictionaryWithCapacity:customContext.count + typewriterContext.count];
Expand Down
2 changes: 1 addition & 1 deletion examples/gen-js/js/analytics/generated/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const genOptions = (context = {}) => ({
...context,
typewriter: {
name: "gen-js",
version: "5.1.3"
version: "5.1.4"
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion examples/gen-js/node/analytics/generated/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const genOptions = (context = {}) => ({
context: Object.assign({}, context, {
typewriter: {
name: "gen-js",
version: "5.1.3"
version: "5.1.4"
}
})
});
Expand Down
2 changes: 1 addition & 1 deletion examples/gen-js/ts/analytics/generated/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const genOptions = (context = {}) => ({
...context,
typewriter: {
name: "gen-js",
version: "5.1.3"
version: "5.1.4"
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typewriter",
"version": "5.1.3",
"version": "5.1.4",
"description": "A compiler for generating strongly typed analytics clients from JSON Schema",
"keywords": [
"analytics",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ static id NSNullify(id _Nullable x) {
NSDictionary<NSString *, id> *typewriterContext = @{
@"typewriter": @{
@"name": @"gen-ios",
@"version": @"5.1.3"
@"version": @"5.1.4"
}
};
NSMutableDictionary *context = [NSMutableDictionary dictionaryWithCapacity:customContext.count + typewriterContext.count];
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/gen-js/__snapshots__/index.amd.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ define(["require", "exports"], function(require, exports) {
...context,
typewriter: {
name: "gen-js",
version: "5.1.3"
version: "5.1.4"
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/gen-js/__snapshots__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const genOptions = (context = {}) => ({
...context,
typewriter: {
name: "gen-js",
version: "5.1.3"
version: "5.1.4"
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/gen-js/__snapshots__/index.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const genOptions = (context = {}) => ({
context: Object.assign({}, context, {
typewriter: {
name: "gen-js",
version: "5.1.3"
version: "5.1.4"
}
})
});
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/gen-js/__snapshots__/index.prod.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const genOptions = (context = {}) => ({
...context,
typewriter: {
name: "gen-js",
version: "5.1.3"
version: "5.1.4"
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/gen-js/__snapshots__/index.prod.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const genOptions = (context = {}) => ({
context: Object.assign({}, context, {
typewriter: {
name: "gen-js",
version: "5.1.3"
version: "5.1.4"
}
})
});
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/gen-js/__snapshots__/index.system.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ System.register([], function(exports_1, context_1) {
...context,
typewriter: {
name: "gen-js",
version: "5.1.3"
version: "5.1.4"
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/gen-js/__snapshots__/index.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
...context,
typewriter: {
name: "gen-js",
version: "5.1.3"
version: "5.1.4"
}
}
});
Expand Down

0 comments on commit a3825a7

Please sign in to comment.