diff --git a/package.json b/package.json index ee39f9c6..eb3024cc 100644 --- a/package.json +++ b/package.json @@ -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://git@github.com/segmentio/typewriter.git", "homepage": "https://github.com/segmentio/typewriter", diff --git a/tests/e2e/ios-objc/TypewriterExample/Analytics/SEGTypewriterUtils.m b/tests/e2e/ios-objc/TypewriterExample/Analytics/SEGTypewriterUtils.m index 8aa58022..bea2dc1d 100644 --- a/tests/e2e/ios-objc/TypewriterExample/Analytics/SEGTypewriterUtils.m +++ b/tests/e2e/ios-objc/TypewriterExample/Analytics/SEGTypewriterUtils.m @@ -14,7 +14,7 @@ + (nonnull SERIALIZABLE_DICT)withTypewriterContextFields:(nullable SERIALIZABLE_ NSDictionary *typewriterContext = @{ @"typewriter": @{ @"language": @"objective-c", - @"version": @"7.0.0-48" + @"version": @"7.0.0" } }; NSMutableDictionary *context = [NSMutableDictionary dictionaryWithCapacity:customContext.count + typewriterContext.count]; diff --git a/tests/e2e/ios-swift/TypewriterSwiftExample/Analytics/SEGTypewriterUtils.m b/tests/e2e/ios-swift/TypewriterSwiftExample/Analytics/SEGTypewriterUtils.m index 8aa58022..bea2dc1d 100644 --- a/tests/e2e/ios-swift/TypewriterSwiftExample/Analytics/SEGTypewriterUtils.m +++ b/tests/e2e/ios-swift/TypewriterSwiftExample/Analytics/SEGTypewriterUtils.m @@ -14,7 +14,7 @@ + (nonnull SERIALIZABLE_DICT)withTypewriterContextFields:(nullable SERIALIZABLE_ NSDictionary *typewriterContext = @{ @"typewriter": @{ @"language": @"objective-c", - @"version": @"7.0.0-48" + @"version": @"7.0.0" } }; NSMutableDictionary *context = [NSMutableDictionary dictionaryWithCapacity:customContext.count + typewriterContext.count]; diff --git a/tests/e2e/node-javascript/analytics/index.js b/tests/e2e/node-javascript/analytics/index.js index 4e040eba..c6f84e65 100644 --- a/tests/e2e/node-javascript/analytics/index.js +++ b/tests/e2e/node-javascript/analytics/index.js @@ -112,7 +112,7 @@ function withTypewriterContext(message) { context: __assign({}, message.context || {}, { typewriter: { language: 'javascript', - version: '7.0.0-48', + version: '7.0.0', }, }), }) diff --git a/tests/e2e/node-typescript/analytics/index.ts b/tests/e2e/node-typescript/analytics/index.ts index 2157e135..c2eb4c0a 100644 --- a/tests/e2e/node-typescript/analytics/index.ts +++ b/tests/e2e/node-typescript/analytics/index.ts @@ -361,7 +361,7 @@ function withTypewriterContext>( ...(message.context || {}), typewriter: { language: 'typescript', - version: '7.0.0-48', + version: '7.0.0', }, }, } diff --git a/tests/e2e/web-javascript/analytics/index.js b/tests/e2e/web-javascript/analytics/index.js index 7e62b38f..ff763bc4 100644 --- a/tests/e2e/web-javascript/analytics/index.js +++ b/tests/e2e/web-javascript/analytics/index.js @@ -75,7 +75,7 @@ function withTypewriterContext(message = {}) { ...(message.context || {}), typewriter: { language: 'javascript', - version: '7.0.0-48', + version: '7.0.0', }, }, } diff --git a/tests/e2e/web-typescript/analytics/index.ts b/tests/e2e/web-typescript/analytics/index.ts index be52676b..47727179 100644 --- a/tests/e2e/web-typescript/analytics/index.ts +++ b/tests/e2e/web-typescript/analytics/index.ts @@ -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', }, }, }