Skip to content

Commit 098a500

Browse files
0.3.0 (#65)
1 parent c13ac4a commit 098a500

File tree

12 files changed

+13
-12
lines changed

12 files changed

+13
-12
lines changed

library/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

library/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kyma-project/asyncapi-react",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"private": false,
55
"description": "A React component for AsyncAPI specification.",
66
"repository": {
@@ -45,6 +45,7 @@
4545
"testWatch": "jest --detectOpenHandles --watch",
4646
"eject": "react-scripts eject",
4747
"copyCss": "cp -r ./src/styles ./lib/styles",
48+
"prepare": "npm run build",
4849
"prepack": "cp ../README.md ./README.md && cp ../LICENSE ./LICENSE",
4950
"postpack": "rm -rf ./README.md && rm -rf ./LICENSE"
5051
},

playground/src/specs/anyOf.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const anyOf = `
2-
asyncapi: '2.0.0-rc2'
2+
asyncapi: '2.0.0'
33
info:
44
title: AnyOf example
55
version: '1.0.0'

playground/src/specs/application-headers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const applicationHeaders = `
2-
asyncapi: '2.0.0-rc2'
2+
asyncapi: '2.0.0'
33
info:
44
title: Application Headers example
55
version: '1.0.0'

playground/src/specs/correlation-id.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const correlationId = `
2-
asyncapi: '2.0.0-rc2'
2+
asyncapi: '2.0.0'
33
info:
44
title: Correlation ID Example
55
version: '1.0.0'

playground/src/specs/gitter-streaming.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const gitterStreaming = `
2-
asyncapi: '2.0.0-rc2'
2+
asyncapi: '2.0.0'
33
id: 'urn:com:gitter:streaming:api'
44
info:
55
title: Gitter Streaming API

playground/src/specs/not.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const not = `
2-
asyncapi: '2.0.0-rc2'
2+
asyncapi: '2.0.0'
33
info:
44
title: Not example
55
version: '1.0.0'

playground/src/specs/oneOf.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const oneOf = `
2-
asyncapi: '2.0.0-rc2'
2+
asyncapi: '2.0.0'
33
info:
44
title: OneOf example
55
version: '1.0.0'

playground/src/specs/rpc-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const rpcClient = `
2-
asyncapi: '2.0.0-rc2'
2+
asyncapi: '2.0.0'
33
id: 'urn:rpc:example:client'
44
defaultContentType: application/json
55

playground/src/specs/rpc-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export const rpcServer = `
2-
asyncapi: '2.0.0-rc2'
2+
asyncapi: '2.0.0'
33
id: 'urn:rpc:example:server'
44
defaultContentType: application/json
55

0 commit comments

Comments
 (0)