Skip to content

Commit fe94666

Browse files
committed
Release v2.4.0
1 parent 22a7924 commit fe94666

9 files changed

+48
-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.3.2
5+
VERSION=v2.4.0
66
BUILD_DIR=build
77

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

release/v2.4.0/RELEASE_NOTES.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Slide MCP Server v2.4.0
2+
3+
## Changes
4+
5+
- 22a7924 Tidyfy Readme
6+
- ab7a846 OMG WTF BBQ Refactor
7+
- 56adaba Version bump
8+
9+
## Installation
10+
11+
Download the appropriate binary for your platform:
12+
13+
- **Linux x64**: slide-mcp-server-v2.4.0-linux-x64.tar.gz
14+
- **Linux ARM64**: slide-mcp-server-v2.4.0-linux-arm64.tar.gz
15+
- **macOS x64**: slide-mcp-server-v2.4.0-macos-x64.tar.gz (or darwin-amd64.tar.gz)
16+
- **macOS ARM64**: slide-mcp-server-v2.4.0-macos-arm64.tar.gz (or darwin-arm64.tar.gz)
17+
- **Windows x64**: slide-mcp-server-v2.4.0-windows-x64.zip
18+
19+
Note: Both macos and darwin named packages are provided for macOS. They contain identical binaries - use whichever naming convention you prefer.
20+
21+
## Verification
22+
23+
Verify the integrity of your download using the checksums.sha256 file:
24+
25+
```bash
26+
shasum -a 256 -c checksums.sha256
27+
```
28+
29+
## macOS Security
30+
31+
The macOS binaries are signed and notarized by Apple. They should run without security warnings on macOS 10.15+ systems.
32+
33+
For older macOS versions or if you encounter security warnings, you may need to run:
34+
35+
```bash
36+
xattr -d com.apple.quarantine slide-mcp-server
37+
```

release/v2.4.0/checksums.sha256

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
2d927b917380fcd2196245d5984f4e62329973d03f6cc3959cf3e361f9b40ca3 ./slide-mcp-server-darwin-amd64.zip
2+
e313c39356528fb5ad656ba0b54a6279813ee0aceab66445cd0f7f2a8023b450 ./slide-mcp-server-darwin-arm64.zip
3+
2c2b86c500c70455fd0652855b009ef2109a3ad76f4a4a1110f3b8ced0772912 ./slide-mcp-server-v2.4.0-darwin-amd64.tar.gz
4+
cb48c857cd6151b7f77a30e473239e6964fb10f0386e0f2cbd5ae404c6877aee ./slide-mcp-server-v2.4.0-darwin-arm64.tar.gz
5+
ac22c26ae00811712c755c07ca669e9eb1548178eba652ca3c0a7012e2498b9d ./slide-mcp-server-v2.4.0-linux-arm64.tar.gz
6+
df392403d92ad4c1cc727e452ccdd4659984938f5ecde70b4fc6b158b99f8b6d ./slide-mcp-server-v2.4.0-linux-x64.tar.gz
7+
cb48c857cd6151b7f77a30e473239e6964fb10f0386e0f2cbd5ae404c6877aee ./slide-mcp-server-v2.4.0-macos-arm64.tar.gz
8+
2c2b86c500c70455fd0652855b009ef2109a3ad76f4a4a1110f3b8ced0772912 ./slide-mcp-server-v2.4.0-macos-x64.tar.gz
9+
d99517880c6fb850793a9dace9130f69c99cdcc0df083ed181b7dbe4ed79099e ./slide-mcp-server-v2.4.0-windows-x64.zip
5.81 MB
Binary file not shown.
6.17 MB
Binary file not shown.
5.94 MB
Binary file not shown.
6.38 MB
Binary file not shown.
6.32 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.3.2"
12+
VERSION="v2.4.0"
1313
BINARY_NAME="slide-mcp-server"
1414
BUILD_DIR="$PROJECT_DIR/build"
1515

0 commit comments

Comments
 (0)