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
13 changes: 0 additions & 13 deletions .dockerignore

This file was deleted.

4 changes: 0 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@ indent_size = 4
[{Makefile,*.mk}]
indent_style = tab

# Dockerfiles.
[Dockerfile*]
indent_size = 4

# GitHub Actions workflows — 2 spaces.
[.github/**/*.{yml,yaml}]
indent_size = 2
Expand Down
2 changes: 0 additions & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,6 @@
# --- Build / packaging ----------------------------------------------------
Makefile text eol=lf
*.mk text eol=lf
Dockerfile* text eol=lf
docker-compose*.yml text eol=lf
.github/**/*.yml text eol=lf
.github/**/*.yaml text eol=lf

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
cache: true
- name: gofumpt diff
run: |
go install mvdan.cc/gofumpt@latest
go install mvdan.cc/gofumpt@v0.10.0
out=$(gofumpt -l .)
if [ -n "$out" ]; then
echo "::error::gofumpt would reformat the following files:"
Expand Down Expand Up @@ -131,12 +131,12 @@ jobs:
cache: true
- name: govulncheck
run: |
go install golang.org/x/vuln/cmd/govulncheck@latest
go install golang.org/x/vuln/cmd/govulncheck@v1.3.0
govulncheck ./...
- name: gosec (advisory)
continue-on-error: true
run: |
go install github.com/securego/gosec/v2/cmd/gosec@latest
go install github.com/securego/gosec/v2/cmd/gosec@v2.27.1
gosec -exclude=G104,G301,G302,G304,G306 ./...

# -------------------------------------------------------------------------
Expand All @@ -157,7 +157,7 @@ jobs:
run: rm -f go.work go.work.sum
- name: deadcode
run: |
go install golang.org/x/tools/cmd/deadcode@latest
go install golang.org/x/tools/cmd/deadcode@v0.45.0
deadcode ./... 2>&1 | head -50

# -------------------------------------------------------------------------
Expand Down
59 changes: 0 additions & 59 deletions .github/workflows/docker.yml

This file was deleted.

10 changes: 6 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.0] — 2026-06-08

### Added
- **`const Version = "0.1.0"`** in `version.go`, exposed as the package-level
source of truth for the SDK version. Aligns hawk-sdk-go with the rest of
the hawk-eco ecosystem (`hawk`, `tok`, `eyrie`, `yaad`, `trace`, `sight`,
`inspect`).
- **`var Version`** in `version.go`, exposed as the package-level source of
truth for the SDK version (read from the `VERSION` file via `go:embed`).
Aligns hawk-sdk-go with the rest of the hawk-eco ecosystem (`hawk`, `tok`,
`eyrie`, `yaad`, `trace`, `sight`, `inspect`).
- **`User-Agent: hawk-sdk-go/<Version>` header** on every outbound HTTP
request — `Health`, `Chat`, `ChatStream`, `Sessions`, `Session`,
`Messages`, `DeleteSession`, `Stats`. Lets daemon operators identify
Expand Down
31 changes: 0 additions & 31 deletions Dockerfile

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<strong>Official Go client for the Hawk daemon API</strong>
</p>
<p align="center">
<a href="https://golang.org/"><img src="https://img.shields.io/badge/Go-1.23+-00ADD8?style=flat-square&logo=go&logoColor=white" alt="Go"></a>
<a href="https://golang.org/"><img src="https://img.shields.io/badge/Go-1.26+-00ADD8?style=flat-square&logo=go&logoColor=white" alt="Go"></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue?style=flat-square" alt="License"></a>
<a href="https://github.com/GrayCodeAI/hawk-sdk-go/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/GrayCodeAI/hawk-sdk-go/ci.yml?style=flat-square&label=tests" alt="CI"></a>
</p>
Expand Down
11 changes: 0 additions & 11 deletions deploy/docker/docker-compose.yml

This file was deleted.

Loading