Skip to content

Commit 37bb774

Browse files
committed
chore: updateing version numbers
1 parent 806ae8d commit 37bb774

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2024"
1212
license-file = "LICENSE"
1313
repository = "https://github.com/apollographql/apollo-mcp-server"
1414
rust-version = "1.89.0"
15-
version = "1.1.0"
15+
version = "1.1.1"
1616

1717
[workspace.dependencies]
1818
apollo-compiler = "1.27.0"

docs/source/run.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ To install or upgrade to the **latest release** of Apollo MCP Server:
4141
<Tab label="Windows">
4242

4343
```terminal showLineNumbers=false
44-
iwr 'https://mcp.apollo.dev/download/win/latest' | iex
44+
iwr 'https://mcp.apollo.dev/download/win/latest' | iex
4545
```
4646
</Tab>
4747

@@ -55,7 +55,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
5555

5656
```terminal showLineNumbers=false
5757
# Note the `v` prefixing the version number
58-
curl -sSL https://mcp.apollo.dev/download/nix/v0.7.4 | sh
58+
curl -sSL https://mcp.apollo.dev/download/nix/v1.1.1 | sh
5959
```
6060

6161
</Tab>
@@ -64,7 +64,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
6464

6565
```terminal showLineNumbers=false
6666
# Note the `v` prefixing the version number
67-
iwr 'https://mcp.apollo.dev/download/win/v0.7.4' | iex
67+
iwr 'https://mcp.apollo.dev/download/win/v1.1.1' | iex
6868
```
6969
</Tab>
7070

@@ -78,7 +78,7 @@ To install or upgrade to a specific version of Apollo MCP Server that is a **rel
7878

7979
```terminal showLineNumbers=false
8080
# Note the `v` prefixing the version number and the `-rc` suffix
81-
curl -sSL https://mcp.apollo.dev/download/nix/v0.7.4-rc.1 | sh
81+
curl -sSL https://mcp.apollo.dev/download/nix/v1.1.1-rc.1 | sh
8282
```
8383

8484
</Tab>
@@ -87,7 +87,7 @@ To install or upgrade to a specific version of Apollo MCP Server that is a **rel
8787

8888
```terminal showLineNumbers=false
8989
# Note the `v` prefixing the version number and the `-rc` suffix
90-
iwr 'https://mcp.apollo.dev/download/win/v0.7.4-rc.1' | iex
90+
iwr 'https://mcp.apollo.dev/download/win/v1.1.1-rc.1' | iex
9191
```
9292
</Tab>
9393

@@ -124,14 +124,14 @@ To download a **specific version** of Apollo MCP Server (recommended for CI envi
124124

125125
```bash
126126
# Note the `v` prefixing the version number
127-
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.7.4
127+
docker image pull ghcr.io/apollographql/apollo-mcp-server:v1.1.1
128128
```
129129

130130
To download a specific version of Apollo MCP Server that is a release candidate:
131131

132132
```bash
133133
# Note the `v` prefixing the version number and the `-rc` suffix
134-
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.7.4-rc.1
134+
docker image pull ghcr.io/apollographql/apollo-mcp-server:v1.1.1-rc.1
135135
```
136136

137137
<Note>

scripts/nix/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ BINARY_DOWNLOAD_PREFIX="${APOLLO_MCP_SERVER_BINARY_DOWNLOAD_PREFIX:="https://git
1414

1515
# Apollo MCP Server version defined in apollo-mcp-server's Cargo.toml
1616
# Note: Change this line manually during the release steps.
17-
PACKAGE_VERSION="v1.1.0"
17+
PACKAGE_VERSION="v1.1.1"
1818

1919
download_binary_and_run_installer() {
2020
downloader --check

scripts/windows/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# Apollo MCP Server version defined in apollo-mcp-server's Cargo.toml
1010
# Note: Change this line manually during the release steps.
11-
$package_version = 'v1.1.0'
11+
$package_version = 'v1.1.1'
1212

1313
function Install-Binary($apollo_mcp_server_install_args) {
1414
$old_erroractionpreference = $ErrorActionPreference

0 commit comments

Comments
 (0)