Skip to content

Commit f0e2a51

Browse files
author
Matthew Hawkins
authored
release: v0.5.2 (#186)
1 parent a4ce0b3 commit f0e2a51

File tree

7 files changed

+18
-11
lines changed

7 files changed

+18
-11
lines changed

.changesets/fix_pubmodmatt_server_info.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
# [0.5.2] - 2025-07-10
8+
9+
## 🐛 Fixes
10+
11+
### Fix ServerInfo - @pubmodmatt PR #183
12+
13+
The server will now report the correct server name and version to clients, rather than the Rust MCP SDK name and version.
14+
15+
16+
717
# [0.5.1] - 2025-07-08
818

919
## 🐛 Fixes

Cargo.lock

Lines changed: 2 additions & 2 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
@@ -4,7 +4,7 @@ members = ["crates/apollo-mcp-server", "crates/apollo-mcp-registry"]
44

55
[workspace.package]
66
authors = ["Apollo <[email protected]>"]
7-
version = "0.5.1"
7+
version = "0.5.2"
88

99
[workspace.dependencies]
1010
apollo-compiler = "1.27.0"

docs/source/command-reference.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To download a **specific version** of Apollo MCP Server (recommended for CI envi
2626

2727
```bash
2828
# Note the `v` prefixing the version number
29-
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.5.1
29+
docker image pull ghcr.io/apollographql/apollo-mcp-server:v0.5.2
3030
```
3131

3232
To download a specific version of Apollo MCP Server that is a release candidate:
@@ -65,7 +65,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
6565

6666
```bash
6767
# Note the `v` prefixing the version number
68-
curl -sSL https://mcp.apollo.dev/download/nix/v0.5.1| sh
68+
curl -sSL https://mcp.apollo.dev/download/nix/v0.5.2| sh
6969
```
7070

7171
If your machine doesn't have the `curl` command, you can get the latest version from the [`curl` downloads page](https://curl.se/download.html).
@@ -82,7 +82,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
8282

8383
```bash
8484
# Note the `v` prefixing the version number
85-
iwr 'https://mcp.apollo.dev/download/win/v0.5.1' | iex
85+
iwr 'https://mcp.apollo.dev/download/win/v0.5.2' | iex
8686
```
8787

8888
## Usage

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="v0.5.1"
17+
PACKAGE_VERSION="v0.5.2"
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 = 'v0.5.1'
11+
$package_version = 'v0.5.2'
1212

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

0 commit comments

Comments
 (0)