Skip to content

Commit 912f8d0

Browse files
committed
Release v2.3.0
1 parent 017cec8 commit 912f8d0

9 files changed

+51
-2
lines changed

Makefile

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

33
BINARY_NAME=slide-mcp-server
44
RELEASE_DIR=release
5-
VERSION=v2.2.1
5+
VERSION=v2.3.0
66
BUILD_DIR=build
77

88
# Code signing variables (set these via environment or command line)

release/v2.3.0/RELEASE_NOTES.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Slide MCP Server v2.3.0
2+
3+
## Changes
4+
5+
- 017cec8 Presentation and Reporting is disabled by default
6+
- c1f6b31 Docs and reports... Also I hate the fact the API has no date filters.
7+
- 7894650 Notes
8+
- 7cb395c Updates for API 1.5.1
9+
- 0883c3f Updated MCP
10+
- 126c51d Update v2.2.1 release with signed macOS binaries
11+
12+
## Installation
13+
14+
Download the appropriate binary for your platform:
15+
16+
- **Linux x64**: slide-mcp-server-v2.3.0-linux-x64.tar.gz
17+
- **Linux ARM64**: slide-mcp-server-v2.3.0-linux-arm64.tar.gz
18+
- **macOS x64**: slide-mcp-server-v2.3.0-macos-x64.tar.gz (or darwin-amd64.tar.gz)
19+
- **macOS ARM64**: slide-mcp-server-v2.3.0-macos-arm64.tar.gz (or darwin-arm64.tar.gz)
20+
- **Windows x64**: slide-mcp-server-v2.3.0-windows-x64.zip
21+
22+
Note: Both macos and darwin named packages are provided for macOS. They contain identical binaries - use whichever naming convention you prefer.
23+
24+
## Verification
25+
26+
Verify the integrity of your download using the checksums.sha256 file:
27+
28+
```bash
29+
shasum -a 256 -c checksums.sha256
30+
```
31+
32+
## macOS Security
33+
34+
The macOS binaries are signed and notarized by Apple. They should run without security warnings on macOS 10.15+ systems.
35+
36+
For older macOS versions or if you encounter security warnings, you may need to run:
37+
38+
```bash
39+
xattr -d com.apple.quarantine slide-mcp-server
40+
```

release/v2.3.0/checksums.sha256

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
51b21332eb28504daa48987fe5deae044f78650991220bc248761e557371d4ab ./slide-mcp-server-darwin-amd64.zip
2+
6b56c48cad4424be40066f56af2192b25c82fad80db2091028efe9cafa6fb518 ./slide-mcp-server-darwin-arm64.zip
3+
4f65587a72f0807a3046d872d4ae963323354363dd75535d24cfa9d5b6b51bb2 ./slide-mcp-server-v2.3.0-darwin-amd64.tar.gz
4+
8eb418772a7bb279b91d9fbbd0b3a13df4db47a15b1daf8762a2cb8bf14b8bcd ./slide-mcp-server-v2.3.0-darwin-arm64.tar.gz
5+
d99ca05900ac02fd741bb92870c37e063858946d5b26dccc06d12c0db77747e6 ./slide-mcp-server-v2.3.0-linux-arm64.tar.gz
6+
5456b7cc68c8881bf7af2eac0f29b843b3e8707cffd9dfb31831f77f8e3ceb59 ./slide-mcp-server-v2.3.0-linux-x64.tar.gz
7+
8eb418772a7bb279b91d9fbbd0b3a13df4db47a15b1daf8762a2cb8bf14b8bcd ./slide-mcp-server-v2.3.0-macos-arm64.tar.gz
8+
4f65587a72f0807a3046d872d4ae963323354363dd75535d24cfa9d5b6b51bb2 ./slide-mcp-server-v2.3.0-macos-x64.tar.gz
9+
479a7c9e6f9584e06e81c5ba63f8512774a85f5f4fd8667993bad1baaa90ced9 ./slide-mcp-server-v2.3.0-windows-x64.zip
5.75 MB
Binary file not shown.
6.15 MB
Binary file not shown.
5.93 MB
Binary file not shown.
6.36 MB
Binary file not shown.
6.3 MB
Binary file not shown.

scripts/build-and-sign.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e # Exit on error
99
# Script configuration
1010
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
1111
PROJECT_DIR="$( cd "$SCRIPT_DIR/.." && pwd )"
12-
VERSION="v2.2.1"
12+
VERSION="v2.3.0"
1313
BINARY_NAME="slide-mcp-server"
1414
BUILD_DIR="$PROJECT_DIR/build"
1515

0 commit comments

Comments
 (0)