Skip to content

Commit 41dc2f9

Browse files
author
Test User
committed
docs: update README with latest release information
- Add version badges for GitHub release and npm package - Update binary download instructions - Add latest release link (v0.0.17-beta)
1 parent 84c0b5d commit 41dc2f9

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
[![Release](https://github.com/DoPlan-dev/CLI/actions/workflows/release.yml/badge.svg)](https://github.com/DoPlan-dev/CLI/actions/workflows/release.yml)
77
[![Go Version](https://img.shields.io/badge/go-1.21%2B-blue)](https://golang.org/)
88
[![License](https://img.shields.io/badge/license-MIT-green)](LICENSE)
9+
[![Latest Release](https://img.shields.io/github/v/release/DoPlan-dev/CLI?label=latest%20release)](https://github.com/DoPlan-dev/CLI/releases/latest)
10+
[![npm version](https://img.shields.io/npm/v/@doplan-dev/cli)](https://www.npmjs.com/package/@doplan-dev/cli)
911

1012
**DoPlan** is a comprehensive project workflow automation tool that transforms your app ideas into well-structured, documented, and trackable development projects. Built with Go, DoPlan provides a complete command-line interface and integrates seamlessly with popular AI-powered IDEs to guide you through the entire development lifecycle—from initial concept to deployment.
1113

@@ -88,14 +90,18 @@ Download the latest release for your platform from [releases](https://github.com
8890

8991
```bash
9092
# Linux/macOS
91-
curl -L https://github.com/DoPlan-dev/CLI/releases/latest/download/doplan_<version>_<platform>.tar.gz | tar -xz
93+
curl -L https://github.com/DoPlan-dev/CLI/releases/latest/download/doplan_$(curl -s https://api.github.com/repos/DoPlan-dev/CLI/releases/latest | grep tag_name | cut -d '"' -f 4 | sed 's/v//')_$(uname -s | tr '[:upper:]' '[:lower:]')_$(uname -m).tar.gz | tar -xz
9294
sudo mv doplan /usr/local/bin/
9395

96+
# Or manually download from: https://github.com/DoPlan-dev/CLI/releases/latest
97+
9498
# Windows
95-
# Download doplan_<version>_windows_amd64.tar.gz
99+
# Download from: https://github.com/DoPlan-dev/CLI/releases/latest
96100
# Extract and add to PATH
97101
```
98102

103+
**Latest Release:** [v0.0.17-beta](https://github.com/DoPlan-dev/CLI/releases/tag/v0.0.17-beta)
104+
99105
### From Source
100106

101107
```bash

0 commit comments

Comments
 (0)