Skip to content

Commit a73d5e8

Browse files
v2.1.2 (#108)
1 parent b169175 commit a73d5e8

File tree

7 files changed

+13
-34
lines changed

7 files changed

+13
-34
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repos:
1818
- id: codespell
1919
exclude: ^locale/
2020
- repo: https://github.com/astral-sh/ruff-pre-commit
21-
rev: v0.13.0
21+
rev: v0.13.2
2222
hooks:
2323
- id: ruff-check
2424
args: [--fix]

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## `2.1.1` - 2025-08-27
1+
## `2.1.2` - 2025-09-29
22

33
#### 🚀 New Features
44

LICENSE.txt

Lines changed: 0 additions & 21 deletions
This file was deleted.

MANIFEST.in

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
[![PyPI version](https://badge.fury.io/py/magic-admin.svg)](https://badge.fury.io/py/magic-admin)
55
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE.txt)
66

7-
The Magic Admin Python SDK provides a simple and powerful way to integrate Magic's authentication system into your Python applications. Handle [DID Tokens](https://magic.link/docs/auth/introduction/decentralized-id) and interact with Magic API endpoints with ease.
7+
The Magic Admin Python SDK provides a simple and powerful way to integrate Magic's authentication system into your Python applications. Handle [DID Tokens](https://docs.magic.link/embedded-wallets/authentication/features/decentralized-id#decentralized-id-did-tokens) and interact with Magic API endpoints with ease.
88

99
## 📚 Documentation
1010

11-
📖 **Full Documentation**: [Magic Python SDK Docs](https://magic.link/docs/auth/api-reference/server-side-sdks/python)
11+
📖 **Full Documentation**: [Magic Python SDK Docs](https://docs.magic.link/embedded-wallets/sdk/server-side/python)
1212

1313
## 🚀 Quick Start
1414

@@ -18,8 +18,8 @@ The Magic Admin Python SDK provides a simple and powerful way to integrate Magic
1818
# Using pip
1919
pip install magic-admin
2020

21-
# Using conda
22-
conda install magic-admin
21+
# Using uv
22+
uv add magic-admin
2323
```
2424

2525
### Basic Usage
@@ -147,7 +147,7 @@ See [CHANGELOG.md](CHANGELOG.md) for a detailed history of changes.
147147

148148
## 🔗 Links
149149

150-
- [Magic Documentation](https://magic.link/docs)
151-
- [Magic Dashboard](https://dashboard.magic.link/)
152-
- [Magic Python SDK Docs](https://magic.link/docs/auth/api-reference/server-side-sdks/python)
153-
- [DID Token Documentation](https://magic.link/docs/auth/introduction/decentralized-id)
150+
- [Magic Documentation](https://docs.magic.link)
151+
- [Magic Dashboard](https://dashboard.magic.link)
152+
- [Magic Python SDK Docs](https://docs.magic.link/embedded-wallets/sdk/server-side/python)
153+
- [DID Token Documentation](https://docs.magic.link/embedded-wallets/authentication/features/decentralized-id#decentralized-id-did-tokens)

magic_admin/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "2.1.1"
1+
VERSION = "2.1.2"

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "magic-admin"
7-
version = "2.1.1"
7+
version = "2.1.2"
88
description = "Magic Python Library"
99
readme = "README.md"
1010
authors = [
1111
{name = "Magic", email = "[email protected]"}
1212
]
1313
keywords = ["magic", "python", "sdk"]
14+
license = {text = "MIT"}
1415
classifiers = [
1516
"Development Status :: 3 - Alpha",
1617
"Programming Language :: Python",

0 commit comments

Comments
 (0)