Skip to content

Commit c95eaee

Browse files
authored
Merge pull request #17 from plugsy/version-bump/3.0.3
chore(release): 3.0.3
2 parents c16a93d + 878e6c7 commit c95eaee

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ config.json
100100

101101
```jsonc
102102
{
103-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
103+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
104104
"connectors": [
105105
{
106106
"type": "DOCKER",
@@ -168,7 +168,7 @@ Example using the [raw connector](docs/connectors/raw.md):
168168

169169
```jsonc
170170
{
171-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
171+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
172172
"connectors": [
173173
{
174174
"type": "DOCKER",

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
2+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
33
"connectors": [
44
{
55
"type": "DOCKER",

docs/agent-mode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Simply add the agent section to your configuration file with the location of you
2121

2222
```jsonc
2323
{
24-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
24+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
2525
"agent": {
2626
"endpoint": "http://localhost:3000/graphql"
2727
}

docs/connectors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Can use a list of website urls (And other request formats) for Plugsy to ping an
2424

2525
```
2626
{
27-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
27+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
2828
"connectors": [
2929
{
3030
"type": "DOCKER",

docs/connectors/docker.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A docker connector, provides access directly to a docker socket or URL mapping e
66

77
```jsonc
88
{
9-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
9+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
1010
"connectors": [
1111
{
1212
"type": "DOCKER",
@@ -95,7 +95,7 @@ services:
9595
9696
```jsonc
9797
{
98-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
98+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
9999
"connectors": [
100100
{
101101
"type": "DOCKER",
@@ -130,7 +130,7 @@ See [Dockerode](https://www.npmjs.com/package/dockerode) for alternative connect
130130

131131
```jsonc
132132
{
133-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
133+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
134134
"connectors": [
135135
{
136136
"type": "DOCKER",

docs/connectors/raw.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Provides items in the dashboard directly from the config itself
66

77
```jsonc
88
{
9-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
9+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
1010
"connectors": [
1111
{
1212
"type": "RAW",
@@ -28,7 +28,7 @@ Provides items in the dashboard directly from the config itself
2828

2929
```jsonc
3030
{
31-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
31+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
3232
"connectors": [
3333
{
3434
"type": "RAW",

docs/connectors/website.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Can use a list of website urls (And other request formats) for Plugsy to ping an
66

77
```jsonc
88
{
9-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
9+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
1010
"connectors": [
1111
{
1212
"type": "WEBSITE",
@@ -30,7 +30,7 @@ Can use a list of website urls (And other request formats) for Plugsy to ping an
3030

3131
```jsonc
3232
{
33-
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.2/config-schema.json",
33+
"$schema": "https://github.com/plugsy/core/releases/download/v3.0.3/config-schema.json",
3434
"connectors": [
3535
{
3636
"type": "WEBSITE",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plugsy/core",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"private": false,
55
"license": "MIT",
66
"config": {

0 commit comments

Comments
 (0)