Skip to content

Commit

Permalink
docs(changelog): release 5.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
colinking committed Jan 29, 2019
1 parent 177069d commit e6d2591
Show file tree
Hide file tree
Showing 18 changed files with 30 additions and 21 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [5.1.5](https://github.com/segmentio/typewriter/compare/5.1.4...5.1.5) (2019-01-29)


### Bug Fixes

* optional message parameter in JS clients ([#47](https://github.com/segmentio/typewriter/issues/47)) ([177069d](https://github.com/segmentio/typewriter/commit/177069d))



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


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.4"
@"version": @"5.1.5"
}
};
NSMutableDictionary *context = [NSMutableDictionary dictionaryWithCapacity:customContext.count + typewriterContext.count];
Expand Down
6 changes: 3 additions & 3 deletions examples/gen-js/js/analytics/generated/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ export default class Analytics {
constructor(analytics: any);

feedViewed(
message?: FeedViewed,
props?: FeedViewed,
options?: SegmentOptions,
callback?: AnalyticsJSCallback
): void;

photoViewed(
message?: PhotoViewed,
props?: PhotoViewed,
options?: SegmentOptions,
callback?: AnalyticsJSCallback
): void;

profileViewed(
message?: ProfileViewed,
props?: ProfileViewed,
options?: SegmentOptions,
callback?: AnalyticsJSCallback
): void;
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.4"
version: "5.1.5"
}
}
});
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.4"
version: "5.1.5"
}
})
});
Expand Down
6 changes: 3 additions & 3 deletions examples/gen-js/ts/analytics/generated/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,19 @@ export default class Analytics {
constructor(analytics: any);

feedViewed(
message?: FeedViewed,
props?: FeedViewed,
options?: SegmentOptions,
callback?: AnalyticsJSCallback
): void;

photoViewed(
message?: PhotoViewed,
props?: PhotoViewed,
options?: SegmentOptions,
callback?: AnalyticsJSCallback
): void;

profileViewed(
message?: ProfileViewed,
props?: ProfileViewed,
options?: SegmentOptions,
callback?: AnalyticsJSCallback
): void;
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.4"
version: "5.1.5"
}
}
});
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.4",
"version": "5.1.5",
"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.4"
@"version": @"5.1.5"
}
};
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.4"
version: "5.1.5"
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/gen-js/__snapshots__/index.es5.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var genOptions = function(context) {
context: __assign({}, context, {
typewriter: {
name: "gen-js",
version: "5.1.4"
version: "5.1.5"
}
})
};
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/gen-js/__snapshots__/index.es5.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ var genOptions = function(context) {
context: __assign({}, context, {
typewriter: {
name: "gen-js",
version: "5.1.4"
version: "5.1.5"
}
})
};
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.4"
version: "5.1.5"
}
}
});
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.4"
version: "5.1.5"
}
})
});
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.4"
version: "5.1.5"
}
}
});
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.4"
version: "5.1.5"
}
})
});
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.4"
version: "5.1.5"
}
}
});
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.4"
version: "5.1.5"
}
}
});
Expand Down

0 comments on commit e6d2591

Please sign in to comment.