Skip to content
Merged
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
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
COSIGN_YES: "true"

# winget:
# runs-on: ubuntu-latest
# needs: release
# steps:
# - uses: vedantmgoyal9/winget-releaser@v2
# with:
# identifier: RunDops.dops
# installers-regex: '\.zip$'
# max-versions-to-keep: 5
# fork-user: rundops
# token: ${{ secrets.WINGET_TOKEN }}
winget:
runs-on: ubuntu-latest
needs: release
steps:
- uses: vedantmgoyal9/winget-releaser@v2
with:
identifier: RunDops.dops
installers-regex: '\.zip$'
max-versions-to-keep: 5
fork-user: rundops
token: ${{ secrets.WINGET_TOKEN }}

docker:
runs-on: ubuntu-latest
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,12 @@ Installs the latest binary to `/usr/local/bin`. Set `DOPS_INSTALL_DIR` to change

### Windows

```powershell
winget install RunDops.dops
```

Or via Scoop:

```bash
scoop bucket add rundops https://github.com/rundops/scoop-bucket.git
scoop install dops
Expand Down
6 changes: 6 additions & 0 deletions docs/guides/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ Downloads the latest binary for your platform and installs to `/usr/local/bin`.
DOPS_INSTALL_DIR=~/.local/bin curl -fsSL https://raw.githubusercontent.com/rundops/dops/main/install.sh | sh
```

### Windows (winget)

```powershell
winget install RunDops.dops
```

### Windows (Scoop)

```sh
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module dops

go 1.26.1
go 1.26.2

require (
charm.land/bubbles/v2 v2.0.0
Expand Down
12 changes: 5 additions & 7 deletions plans/TODO.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# dops-cli — Feature TODO

## v0.12.0 — Execution History

**Spec:** [specs/VERSION_0_12_0.md](../specs/VERSION_0_12_0.md)
**Plan:** [plans/2026-04-03-execution-history.md](2026-04-03-execution-history.md)
**Branch:** `feature/v0.12.0`
## Completed

### v0.12.0 — Execution History
- [x] Execution history + audit trail ([#55](https://github.com/rundops/dops/issues/55))

## Completed
- [x] Log archives (UUID-named .log.gz, 10MB cap)
- [x] Web UI history view with Datadog-style time picker
- [x] Release polish (docs, demo data, OG image, favicon)

### v0.11.0 — MCP Completeness + Web UI Polish
- [x] MCP tool schema defaults
Expand Down
16 changes: 9 additions & 7 deletions specs/VERSION_0_12_0.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,19 @@ and exposed as an MCP resource.

### 2. Release Polish (required for every version)

**Status:** TODO
**Status:** DONE

Every release must include documentation updates, demo data, and
release verification before tagging.

#### Acceptance Criteria

- [ ] README.md updated with new features
- [ ] docs/guides/ pages updated (getting-started, new guides if needed)
- [ ] Demo mode has sample history data for the history view
- [x] README.md updated with new features
- [x] docs/guides/ pages updated (getting-started with history section)
- [x] Demo mode has sample history data for the history view
- [ ] Screenshots/GIFs updated if UI changed
- [ ] CLAUDE.md architecture reference updated if architecture changed
- [ ] Changelog in GitHub release notes covers all changes
- [ ] All open issues reviewed and closed if implemented
- [x] CLAUDE.md architecture reference updated if architecture changed
- [x] Changelog in GitHub release notes covers all changes
- [x] All open issues reviewed and closed if implemented
- [x] OG image and social meta tags for link previews
- [x] Favicon fixed for Safari
Loading