diff --git a/.all-contributorsrc b/.all-contributorsrc
index 42f54a7f3cc7..a52931c57497 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -454,6 +454,15 @@
"contributions": [
"doc"
]
+ },
+ {
+ "login": "Florence-Njeri",
+ "name": "Florence Njeri",
+ "avatar_url": "https://avatars.githubusercontent.com/u/40742916?v=4",
+ "profile": "https://florence-njeri.github.io/NjeriPortfolio",
+ "contributions": [
+ "code"
+ ]
}
],
"contributorsPerLine": 7,
diff --git a/README.md b/README.md
index 69905cfd8983..cae0247a1dc6 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
---
-[![All Contributors](https://img.shields.io/badge/all_contributors-45-orange.svg?style=flat-square)](#contributors-)
+[![All Contributors](https://img.shields.io/badge/all_contributors-46-orange.svg?style=flat-square)](#contributors-)
[![Netlify Status](https://api.netlify.com/api/v1/badges/b2137407-b765-46c4-95b5-a72d9b1592ab/deploy-status)](https://app.netlify.com/sites/asyncapi-website/deploys)
@@ -207,6 +207,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
![Benjamin Rukundo](https://avatars.githubusercontent.com/u/67878128?v=4?s=100) Benjamin Rukundo 💻 |
![tthijm](https://avatars.githubusercontent.com/u/59415467?v=4?s=100) tthijm 🚇 |
![Cynthia Peter](https://avatars.githubusercontent.com/u/33583060?v=4?s=100) Cynthia Peter 📖 |
+ ![Florence Njeri](https://avatars.githubusercontent.com/u/40742916?v=4?s=100) Florence Njeri 💻 |
diff --git a/components/TOC.js b/components/TOC.js
index 1593c7f8d080..27fd09fd1061 100644
--- a/components/TOC.js
+++ b/components/TOC.js
@@ -47,7 +47,7 @@ export default function TOC({
href={`#${item.slug}`}
key={index}
>
- {item.content}
+ {item.content.replaceAll('`', '')}
))
}
diff --git a/config/newsroom_videos.json b/config/newsroom_videos.json
index 2cad4f837645..466d9822c252 100644
--- a/config/newsroom_videos.json
+++ b/config/newsroom_videos.json
@@ -1,4 +1,10 @@
[
+ {
+ "image_url": "https://i.ytimg.com/vi/DUB3XL_APgs/hqdefault.jpg",
+ "title": "Spec 3.0 (July 21th 2023)",
+ "description": "https://github.com/asyncapi/community/issues/737.",
+ "videoId": "DUB3XL_APgs"
+ },
{
"image_url": "https://i.ytimg.com/vi/mAISwYCZa2I/hqdefault.jpg",
"title": "Studio planning",
@@ -22,11 +28,5 @@
"title": "Community Meeting, Tuesday June 13th 2023",
"description": "https://github.com/asyncapi/community/issues/738.",
"videoId": "_zdXm90KvF0"
- },
- {
- "image_url": "https://i.ytimg.com/vi/52qqKE8jFlI/hqdefault.jpg",
- "title": "Spec 3.0 (June 7th 2023)",
- "description": "https://github.com/asyncapi/community/issues/734.",
- "videoId": "52qqKE8jFlI"
}
]
\ No newline at end of file
diff --git a/pages/docs/tools/cli/usage.md b/pages/docs/tools/cli/usage.md
index 08ee3bb9187e..2ce01466cead 100644
--- a/pages/docs/tools/cli/usage.md
+++ b/pages/docs/tools/cli/usage.md
@@ -29,7 +29,7 @@ $ npm install -g @asyncapi/cli
$ asyncapi COMMAND
running command...
$ asyncapi (--version)
-@asyncapi/cli/0.48.5 linux-x64 node-v18.16.0
+@asyncapi/cli/0.48.6 linux-x64 node-v18.16.0
$ asyncapi --help [COMMAND]
USAGE
$ asyncapi COMMAND
@@ -91,7 +91,7 @@ EXAMPLES
$ asyncapi bundle ./asyncapi.yaml ./features.yaml --base ./asyncapi.yaml --reference-into-components
```
-_See code: [src/commands/bundle.ts](https://github.com/asyncapi/cli/blob/v0.48.5/src/commands/bundle.ts)_
+_See code: [src/commands/bundle.ts](https://github.com/asyncapi/cli/blob/v0.48.6/src/commands/bundle.ts)_
## `asyncapi config`
@@ -105,7 +105,7 @@ DESCRIPTION
CLI config settings
```
-_See code: [src/commands/config/index.ts](https://github.com/asyncapi/cli/blob/v0.48.5/src/commands/config/index.ts)_
+_See code: [src/commands/config/index.ts](https://github.com/asyncapi/cli/blob/v0.48.6/src/commands/config/index.ts)_
## `asyncapi config context`
@@ -234,7 +234,7 @@ DESCRIPTION
Convert asyncapi documents older to newer versions
```
-_See code: [src/commands/convert.ts](https://github.com/asyncapi/cli/blob/v0.48.5/src/commands/convert.ts)_
+_See code: [src/commands/convert.ts](https://github.com/asyncapi/cli/blob/v0.48.6/src/commands/convert.ts)_
## `asyncapi diff OLD NEW`
@@ -270,7 +270,7 @@ DESCRIPTION
Find diff between two asyncapi files
```
-_See code: [src/commands/diff.ts](https://github.com/asyncapi/cli/blob/v0.48.5/src/commands/diff.ts)_
+_See code: [src/commands/diff.ts](https://github.com/asyncapi/cli/blob/v0.48.6/src/commands/diff.ts)_
## `asyncapi generate`
@@ -284,7 +284,7 @@ DESCRIPTION
Generate typed models or other things like clients, applications or docs using AsyncAPI Generator templates.
```
-_See code: [src/commands/generate/index.ts](https://github.com/asyncapi/cli/blob/v0.48.5/src/commands/generate/index.ts)_
+_See code: [src/commands/generate/index.ts](https://github.com/asyncapi/cli/blob/v0.48.6/src/commands/generate/index.ts)_
## `asyncapi generate fromTemplate ASYNCAPI TEMPLATE`
@@ -408,7 +408,7 @@ DESCRIPTION
Creates a new asyncapi file
```
-_See code: [src/commands/new/index.ts](https://github.com/asyncapi/cli/blob/v0.48.5/src/commands/new/index.ts)_
+_See code: [src/commands/new/index.ts](https://github.com/asyncapi/cli/blob/v0.48.6/src/commands/new/index.ts)_
## `asyncapi new file`
@@ -496,7 +496,7 @@ EXAMPLES
$ asyncapi optimize ./asyncapi.yaml --optimization=remove-components,reuse-components,move-to-components --output=terminal --no-tty
```
-_See code: [src/commands/optimize.ts](https://github.com/asyncapi/cli/blob/v0.48.5/src/commands/optimize.ts)_
+_See code: [src/commands/optimize.ts](https://github.com/asyncapi/cli/blob/v0.48.6/src/commands/optimize.ts)_
## `asyncapi start`
@@ -510,7 +510,7 @@ DESCRIPTION
Start asyncapi studio
```
-_See code: [src/commands/start/index.ts](https://github.com/asyncapi/cli/blob/v0.48.5/src/commands/start/index.ts)_
+_See code: [src/commands/start/index.ts](https://github.com/asyncapi/cli/blob/v0.48.6/src/commands/start/index.ts)_
## `asyncapi start studio`
@@ -554,5 +554,5 @@ DESCRIPTION
validate asyncapi file
```
-_See code: [src/commands/validate.ts](https://github.com/asyncapi/cli/blob/v0.48.5/src/commands/validate.ts)_
+_See code: [src/commands/validate.ts](https://github.com/asyncapi/cli/blob/v0.48.6/src/commands/validate.ts)_