Skip to content

Commit 6312bb9

Browse files
author
Matthew Hawkins
authored
release: v0.2.0 (#72)
1 parent 14fe520 commit 6312bb9

File tree

8 files changed

+11
-12
lines changed

8 files changed

+11
-12
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1313
### 📚 Documentation
1414
-->
1515

16-
## [Unreleased]
16+
## [0.2.0] - 2025-05-21
1717

1818
### 🚀 Features
1919
- The `--operations` argument now supports hot reloading and directory paths. If a directory is specified, all .graphql files in the directory will be loaded as operations. The running server will update when files are added to or removed from the directory. (#69)

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.1.0"
5+
package.version = "0.2.0"
66

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

RELEASE_CHECKLIST.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ This document outlines the steps required to prepare and execute a new release o
1111
- [ ] Update the version number in [Cargo.toml](./Cargo.toml)
1212
- [ ] Update the version number in [the *nix install script](./scripts/nix/install.sh)
1313
- [ ] Update the version number in [the Windows install script](./scripts/windows/install.ps1)
14+
- [ ] Update the version number in [the command reference](./docs/source/command-reference.mdx)
15+
- [ ] Update the version number in [user guide](./docs/source/guides/index.mdx)
1416
- [ ] Create a PR with these changes and get it approved and merged
1517
- [ ] Check out `main` and `git pull` to pick up your merged changes
1618
- [ ] Sync your tags with the repo: `git tag -d $(git tag) && git fetch --tags`

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.1.0 | sh
27+
curl -sSL https://mcp.apollo.dev/download/nix/v0.2.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.1.0' | iex
50+
iwr 'https://mcp.apollo.dev/download/win/v0.2.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.1.0 | sh
32+
curl -sSL https://mcp.apollo.dev/download/nix/v0.2.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.1.0' | iex
55+
iwr 'https://mcp.apollo.dev/download/win/v0.2.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.1.0"
17+
PACKAGE_VERSION="v0.2.0"
1818

1919
download_binary_and_run_installer() {
2020
downloader --check

scripts/windows/install.ps1

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,9 @@
66
# Installs the latest version of the Apollo MCP Server.
77
# Specify a specific version to install with the $VERSION variable.
88

9-
# Example to bypass binary overwrite [y/N] prompt
10-
# iwr https://mcp.apollo.dev/win/latest | iex --force
11-
129
# Apollo MCP Server version defined in apollo-mcp-server's Cargo.toml
1310
# Note: Change this line manually during the release steps.
14-
$package_version = 'v0.1.0'
11+
$package_version = 'v0.2.0'
1512

1613
function Install-Binary($apollo_mcp_server_install_args) {
1714
$old_erroractionpreference = $ErrorActionPreference

0 commit comments

Comments
 (0)