Skip to content

Commit 9293475

Browse files
committed
0.7.0
Signed-off-by: Lance Drane <[email protected]>
1 parent dec19bb commit 9293475

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

examples/1_hello_world/hello_service_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "hello-organization.hello-facility.hello-system.hello-subsystem.hello-service",
66
"version": "0.0.0",

examples/1_hello_world_amqp/hello_service_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "hello-organization.hello-facility.hello-system.hello-subsystem.hello-service",
66
"version": "0.0.0",

examples/1_hello_world_events/hello_service_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "hello-organization.hello-facility.hello-system.hello-subsystem.hello-service",
66
"version": "0.0.0",

examples/2_counting/counting_service_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "counting-organization.counting-facility.counting-system.counting-subsystem.counting-service",
66
"version": "0.0.0",

examples/2_counting_events/counting_service_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "counting-organization.counting-facility.counting-system.counting-subsystem.counting-service",
66
"version": "0.0.0",

examples/3_ping_pong_events/ping_service_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "p-ng-organization.p-ng-facility.p-ng-system.p-ng-subsystem.ping-service",
66
"version": "0.0.0"

examples/3_ping_pong_events/pong_service_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "p-ng-organization.p-ng-facility.p-ng-system.p-ng-subsystem.pong-service",
66
"version": "0.0.0"

examples/3_ping_pong_events_amqp/ping_service_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "p-ng-organization.p-ng-facility.p-ng-system.p-ng-subsystem.ping-service",
66
"version": "0.0.0"

examples/3_ping_pong_events_amqp/pong_service_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "p-ng-organization.p-ng-facility.p-ng-system.p-ng-subsystem.pong-service",
66
"version": "0.0.0"

examples/4_service_to_service/example_1_service_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "example-organization.example-facility.example-system.example-subsystem.service-one",
66
"version": "0.0.0",

examples/4_service_to_service/example_2_service_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "example-organization.example-facility.example-system.example-subsystem.service-two",
66
"version": "0.0.0",

src/intersect_sdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from ._internal.version import strip_version_metadata
99

1010
# may include build metadata
11-
__version__ = '0.6.4'
11+
__version__ = '0.7.0'
1212

1313
version_string = strip_version_metadata(__version__)
1414
"""

tests/fixtures/example_schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"asyncapi": "2.6.0",
3-
"x-intersect-version": "0.6.4",
3+
"x-intersect-version": "0.7.0",
44
"info": {
55
"title": "test.test.test.test.test",
66
"version": "0.0.0",

0 commit comments

Comments
 (0)