Skip to content

Commit 9542de9

Browse files
author
Matthew Hawkins
authored
release: v0.3.0 (#104)
1 parent a38268d commit 9542de9

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1212
### 🛠 Maintenance
1313
### 📚 Documentation
1414
-->
15-
## [UNRELEASED]
15+
16+
## [0.3.0] - 2025-05-29
1617

1718
### 🚀 Features
19+
1820
- Implement the Streamable HTTP transport. Enable with `--http-port` and/or `--http-address`. (#98)
1921
- Include both the type description and field description in input schema (#100)
2022
- Hide String, ID, Int, Float, and Boolean descriptions in input schema (#100)

Cargo.lock

Lines changed: 1 addition & 1 deletion
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
@@ -2,7 +2,7 @@
22
resolver = "2"
33
members = ["crates/apollo-mcp-server", "crates/apollo-mcp-registry"]
44

5-
package.version = "0.2.1"
5+
package.version = "0.3.0"
66

77
[workspace.dependencies]
88
apollo-compiler = "1.27.0"

docs/source/command-reference.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
2424

2525
```bash
2626
# Note the `v` prefixing the version number
27-
curl -sSL https://mcp.apollo.dev/download/nix/v0.2.1 | sh
27+
curl -sSL https://mcp.apollo.dev/download/nix/v0.3.0| sh
2828
```
2929

3030
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).
@@ -47,7 +47,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
4747

4848
```bash
4949
# Note the `v` prefixing the version number
50-
iwr 'https://mcp.apollo.dev/download/win/v0.2.1' | iex
50+
iwr 'https://mcp.apollo.dev/download/win/v0.3.0' | iex
5151
```
5252

5353
## Usage

docs/source/guides/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
2929

3030
```bash
3131
# Note the `v` prefixing the version number
32-
curl -sSL https://mcp.apollo.dev/download/nix/v0.2.1 | sh
32+
curl -sSL https://mcp.apollo.dev/download/nix/v0.3.0 | sh
3333
```
3434

3535
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).
@@ -52,7 +52,7 @@ To install or upgrade to a **specific version** of Apollo MCP Server (recommende
5252

5353
```bash
5454
# Note the `v` prefixing the version number
55-
iwr 'https://mcp.apollo.dev/download/win/v0.2.1' | iex
55+
iwr 'https://mcp.apollo.dev/download/win/v0.3.0' | iex
5656
```
5757

5858
{/* ### Download container image

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

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

0 commit comments

Comments
 (0)