Skip to content

Commit 106d2fb

Browse files
committed
chore(docs): Update version references from v2.0.0 to v1.0.0
Signed-off-by: Tommy Nguyen <tuannvm@hotmail.com>
1 parent ed55729 commit 106d2fb

File tree

8 files changed

+11
-12
lines changed

8 files changed

+11
-12
lines changed

CLAUDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
66

77
**oauth-mcp-proxy** is an OAuth 2.1 authentication library for Go MCP servers. It provides server-side OAuth integration with minimal code (3-line integration via `WithOAuth()`), supporting multiple providers (HMAC, Okta, Google, Azure AD).
88

9-
**Version**: v2.0.0 (Supports both `mark3labs/mcp-go` and official `modelcontextprotocol/go-sdk`)
9+
**Version**: v1.0.0 (Supports both `mark3labs/mcp-go` and official `modelcontextprotocol/go-sdk`)
1010

1111
## Build Commands
1212

@@ -38,7 +38,7 @@ make vuln
3838

3939
## Architecture
4040

41-
### Package Structure (v2.0.0)
41+
### Package Structure (v1.0.0)
4242

4343
```
4444
oauth-mcp-proxy/
@@ -142,7 +142,7 @@ go test -v -run TestName ./...
142142
3. **Logging**: Config.Logger is optional. If nil, uses default logger (log.Printf with level prefixes)
143143
4. **Modes**: Library supports "native" (token validation only) and "proxy" (OAuth flow proxy) modes
144144
5. **Security**: All redirect URIs validated, state parameters HMAC-signed, tokens never logged (only hash previews)
145-
6. **v2.0.0 Breaking Change**: `WithOAuth()` moved to adapter packages (`mark3labs.WithOAuth()` or `mcp.WithOAuth()`). See `MIGRATION-V2.md`.
145+
6. **Adapter Pattern**: `WithOAuth()` is in adapter packages (`mark3labs.WithOAuth()` or `mcp.WithOAuth()`) for SDK-specific integration.
146146

147147
## Using the Library
148148

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ _, handler, _ := mcpoauth.WithOAuth(mux, cfg, mcpServer)
3131
http.ListenAndServe(":8080", handler)
3232
```
3333

34-
> **📢 Migrating from v1.x?** See [MIGRATION-V2.md](./MIGRATION-V2.md) (2 line change, ~5 min)
3534

3635
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/tuannvm/oauth-mcp-proxy/test.yml?branch=main&label=Tests&logo=github)](https://github.com/tuannvm/oauth-mcp-proxy/actions/workflows/test.yml)
3736
[![Go Version](https://img.shields.io/github/go-mod/go-version/tuannvm/oauth-mcp-proxy?logo=go)](https://github.com/tuannvm/oauth-mcp-proxy/blob/main/go.mod)

docs/generic-implementation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -687,14 +687,14 @@ open coverage.html
687687

688688
## Phase 6: Release Preparation
689689

690-
**Goal**: Prepare for v2.0.0 release.
690+
**Goal**: Prepare for v1.0.0 release.
691691

692692
### Checkpoint 6.1: Update version and changelog ⬜
693693

694694
**Task**: Prepare release artifacts.
695695

696696
**Files to Update/Create**:
697-
- `CHANGELOG.md` (document v2.0.0 changes)
697+
- `CHANGELOG.md` (document v1.0.0 changes)
698698
- Version tags in code
699699

700700
**Contents**:
@@ -739,7 +739,7 @@ done
739739

740740
### Checkpoint 6.3: Create release PR ⬜
741741

742-
**Task**: Create pull request for v2.0.0.
742+
**Task**: Create pull request for v1.0.0.
743743

744744
**PR Contents**:
745745
- Link to this implementation doc

docs/generic-plan.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ All examples, README.md, CLAUDE.md, and tutorials need updates to reflect new im
220220
3. **Phase 3**: Create mcp adapter
221221
4. **Phase 4**: Update tests
222222
5. **Phase 5**: Update documentation
223-
6. **Phase 6**: Release v2.0.0 with migration guide
223+
6. **Phase 6**: Release v1.0.0 with migration guide
224224

225225
### For Library Users
226226

docs/providers/AZURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
> **📢 v2.0.0:** This guide shows examples for both `mark3labs/mcp-go` and official `modelcontextprotocol/go-sdk`.
1+
> **📢 v1.0.0:** This guide shows examples for both `mark3labs/mcp-go` and official `modelcontextprotocol/go-sdk`.
22
> See [examples/README.md](../../examples/README.md) for complete setup guide.
33
44
# Azure AD Provider Guide

docs/providers/GOOGLE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
> **📢 v2.0.0:** This guide shows examples for both `mark3labs/mcp-go` and official `modelcontextprotocol/go-sdk`.
1+
> **📢 v1.0.0:** This guide shows examples for both `mark3labs/mcp-go` and official `modelcontextprotocol/go-sdk`.
22
> See [examples/README.md](../../examples/README.md) for complete setup guide.
33
44
# Google Provider Guide

docs/providers/HMAC.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# HMAC Provider Guide
22

3-
> **📢 v2.0.0:** This guide shows examples for both `mark3labs/mcp-go` and official `modelcontextprotocol/go-sdk`.
3+
> **📢 v1.0.0:** This guide shows examples for both `mark3labs/mcp-go` and official `modelcontextprotocol/go-sdk`.
44
> See [MIGRATION-V2.md](../../MIGRATION-V2.md) for upgrade details.
55
66
## Overview

docs/providers/OKTA.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Okta Provider Guide
22

3-
> **📢 v2.0.0:** This guide shows examples for both `mark3labs/mcp-go` and official `modelcontextprotocol/go-sdk`.
3+
> **📢 v1.0.0:** This guide shows examples for both `mark3labs/mcp-go` and official `modelcontextprotocol/go-sdk`.
44
> See [examples/README.md](../../examples/README.md) for complete Okta setup guide.
55
66
## Overview

0 commit comments

Comments
 (0)