Skip to content

Commit

Permalink
v7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
colinking committed Oct 21, 2019
1 parent aecf044 commit b74f31a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
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": "7.0.0-48",
"version": "7.0.0",
"description": "A compiler for generating strongly typed analytics clients via Segment Protocols",
"repository": "ssh://[email protected]/segmentio/typewriter.git",
"homepage": "https://github.com/segmentio/typewriter",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ + (nonnull SERIALIZABLE_DICT)withTypewriterContextFields:(nullable SERIALIZABLE_
NSDictionary<NSString *, id> *typewriterContext = @{
@"typewriter": @{
@"language": @"objective-c",
@"version": @"7.0.0-48"
@"version": @"7.0.0"
}
};
NSMutableDictionary *context = [NSMutableDictionary dictionaryWithCapacity:customContext.count + typewriterContext.count];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ + (nonnull SERIALIZABLE_DICT)withTypewriterContextFields:(nullable SERIALIZABLE_
NSDictionary<NSString *, id> *typewriterContext = @{
@"typewriter": @{
@"language": @"objective-c",
@"version": @"7.0.0-48"
@"version": @"7.0.0"
}
};
NSMutableDictionary *context = [NSMutableDictionary dictionaryWithCapacity:customContext.count + typewriterContext.count];
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/node-javascript/analytics/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function withTypewriterContext(message) {
context: __assign({}, message.context || {}, {
typewriter: {
language: 'javascript',
version: '7.0.0-48',
version: '7.0.0',
},
}),
})
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/node-typescript/analytics/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ function withTypewriterContext<P, T extends Segment.TrackMessage<P>>(
...(message.context || {}),
typewriter: {
language: 'typescript',
version: '7.0.0-48',
version: '7.0.0',
},
},
}
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/web-javascript/analytics/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function withTypewriterContext(message = {}) {
...(message.context || {}),
typewriter: {
language: 'javascript',
version: '7.0.0-48',
version: '7.0.0',
},
},
}
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/web-typescript/analytics/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ function withTypewriterContext(message: Segment.Options = {}): Segment.Options {
...(message.context || {}),
typewriter: {
language: 'typescript',
version: '7.0.0-48',
version: '7.0.0',
},
},
}
Expand Down

0 comments on commit b74f31a

Please sign in to comment.