Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Documentation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# GitAgent Documentation

> **GitAgent** — A universal git-native multimodal always-learning AI Agent
> Version 1.3.3 | MIT License | [github.com/open-gitagent/gitagent](https://github.com/open-gitagent/gitagent)
> Version 2.0.2 | MIT License | [github.com/open-gitagent/gitagent](https://github.com/open-gitagent/gitagent)

---

Expand Down Expand Up @@ -83,7 +83,7 @@ The installer offers four options:
curl -fsSL https://raw.githubusercontent.com/open-gitagent/gitagent/main/install.sh | bash

# Or manually
npm update -g gitagent
npm update -g @open-gitagent/gitagent
```

---
Expand Down
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ rows=(
text=(
""
""
"${RED}${BOLD}GitAgent v1.1.1${RESET}"
"${RED}${BOLD}GitAgent v2.0.2${RESET}"
"${GRAY}A universal git-native multimodal always learning AI Agent${RESET}"
"${GRAY}(TinyHuman)${RESET}"
""
Expand Down Expand Up @@ -91,8 +91,8 @@ check_cmd npm
check_cmd git

NODE_VERSION=$(node -v | sed 's/v//' | cut -d. -f1)
if [ "$NODE_VERSION" -lt 18 ]; then
echo -e " ${RED}✗ Node.js 18+ required (found $(node -v))${NC}"
if [ "$NODE_VERSION" -lt 20 ]; then
echo -e " ${RED}✗ Node.js 20+ required (found $(node -v))${NC}"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The banner text array inside install.sh still reads GitAgent v1.1.1 (the sprite text array, a few lines above the changed hunk). This PR updates the version in Documentation.md and README.md but leaves the hardcoded string in the installer banner stale. Additionally, Documentation.md was bumped to 1.5.2 while package.json is at 2.0.0 — the docs version is still wrong after this change.

exit 1
fi

Expand Down
Loading