Skip to content

Commit bda137e

Browse files
Merge pull request #40 from recursivezero/main
🚀 Release: 2026-03-12
2 parents e7ee5a3 + c432ecc commit bda137e

File tree

7 files changed

+18
-16
lines changed

7 files changed

+18
-16
lines changed

.github/workflows/comment-on-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
comment:
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626

2727
- name: Run Comment Action
2828
uses: recursivezero/action-club/.github/actions/comment-on-issue@main

.github/workflows/issue-branch-sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout Repo
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Link Branch to Issue
2020
# Point this to your centralized repository

.github/workflows/main-ro-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
contents: write
1313
pull-requests: write
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
fetch-depth: 0 # Required to compare branches
1818

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ All notable changes to this repository will be documented in this file.
2222

2323
- Added Database connection retry logic
2424

25-
## [1.1.0] THu, Mar 12, 2026
25+
## [1.1.1] THu, Mar 12, 2026
2626

2727
- Added Memory Cache
2828
- Redesign Page

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
![License](https://img.shields.io/badge/License-MIT-yellow.svg)
99
![Status](https://img.shields.io/badge/Status-Active-success.svg)
1010

11-
---
11+
## live on <https://rzro.link>
1212

1313
## Overview
1414

@@ -183,7 +183,7 @@ Offline Mode activates automatically when:
183183

184184
Log message:
185185

186-
```
186+
```text
187187
⚠️ MongoDB connection failed. Running in NO-DB mode.
188188
```
189189

@@ -225,7 +225,7 @@ Encode special chars:
225225

226226
Example:
227227

228-
```
228+
```plaintext
229229
MONGO_URI=mongodb://user%40gmail.com:Pass%40123@localhost:27017/tiny_url?authSource=tiny_url
230230
```
231231

@@ -268,24 +268,24 @@ pip install dist/*.whl
268268
pip install --upgrade dist/*.whl
269269
```
270270

271-
# 📡 Endpoints
271+
## 📡 Endpoints
272272

273-
# 🔐 Cache Admin Endpoints (Authentication)
273+
### 🔐 Cache Admin Endpoints (Authentication)
274274

275275
To use the cache admin endpoints (`/cache/purge`, `/cache/remove`), you must configure a secret token in your environment and send it in the request header.
276276
Setup
277277

278278
Add a token in your .env file:
279279

280-
```
280+
```text
281281
CACHE_PURGE_TOKEN=your-secret-token
282282
```
283283

284284
🧪 How to test
285285

286286
PowerShell
287287

288-
```
288+
```text
289289
Invoke-RestMethod `
290290
-Method DELETE `
291291
-Uri "http://127.0.0.1:8000/cache/purge" `
@@ -294,7 +294,7 @@ Invoke-RestMethod `
294294

295295
🧹 Remove a single cache entry
296296

297-
```
297+
```text
298298
Invoke-RestMethod `
299299
-Method PATCH `
300300
-Uri "http://127.0.0.1:8000/cache/remove?key=abc123" `

app/templates/layout.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<!-- OpenGraph Meta Tags -->
1010
<meta property="og:title" content="Smart URL Shortener | From Recursive Zero">
1111
<meta property="og:description"
12-
content="A fast and reliable platform to shorten, manage, and track your links easily and share across internet with confidence. generate QR codes for your links and access detailed analytics.">
13-
<meta property="og:image" content="https://rzro.link/static/og-image.png">
12+
content="A fast and reliable platform to shorten, generate QR Code, manage and track and access detailed analytics.">
13+
<meta property="og:image" content="https://rzro.link/static/og-image.jpg">
1414
<meta property="og:url" content="https://rzro.link/">
1515
<meta property="og:type" content="website">
1616

@@ -19,7 +19,7 @@
1919
<meta property="twitter:title" content="Smart URL Shortener | From Recursive Zero">
2020
<meta property="twitter:description"
2121
content="Create powerful short links , QR Code and share them with confidence. Track clicks, manage your links, and access detailed analytics.">
22-
<meta property="twitter:image" content="https://rzro.link/static/og-image.png">
22+
<meta property="twitter:image" content="https://rzro.link/static/og-image.jpg">
2323

2424
<link rel="preconnect" href="https://fonts.googleapis.com">
2525
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Geist+Mono&display=swap"

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
[project]
22
name = "tiny"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "A package for URL Shortener with QR Code generation"
55
authors = [
66
{ name = "recursivezero", email = "152776938+recursivezero@users.noreply.github.com" },
77
]
88
maintainers = [
99
{ name = "Harsh Mishra", email = "187759129+harshmishra2701@users.noreply.github.com" },
10+
{ name = "Ravindara Yadav", email = "156741237+Ravindrayadav04@users.noreply.github.com" },
11+
1012
]
1113
license = { text = "MIT" }
1214
readme = "README.md"

0 commit comments

Comments
 (0)