Skip to content

Commit 4c9d001

Browse files
committed
chore: align all version strings to 0.1.0
1 parent 01a65ff commit 4c9d001

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

daemon/daemon.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ func (s *Server) handleHealth(w http.ResponseWriter, _ *http.Request) {
163163

164164
resp := HealthResponse{
165165
Status: "ok",
166-
Version: "0.3.0",
166+
Version: "0.1.0",
167167
Uptime: time.Since(s.startedAt).Round(time.Second).String(),
168168
Sessions: sessionCount,
169169
StartedAt: s.startedAt.Format(time.RFC3339),

tool/web_fetch.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func (WebFetchTool) Execute(ctx context.Context, input json.RawMessage) (string,
4949
if err != nil {
5050
return "", err
5151
}
52-
req.Header.Set("User-Agent", "hawk/0.0.1")
52+
req.Header.Set("User-Agent", "hawk/0.1.0")
5353

5454
resp, err := http.DefaultClient.Do(req)
5555
if err != nil {

tool/web_search.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ func duckDuckGoSearch(ctx context.Context, query string, count int) ([]searchRes
136136
if err != nil {
137137
return nil, err
138138
}
139-
req.Header.Set("User-Agent", "hawk/0.0.1")
139+
req.Header.Set("User-Agent", "hawk/0.1.0")
140140

141141
resp, err := http.DefaultClient.Do(req)
142142
if err != nil {

tool/web_search_brave.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func (c *braveClient) search(ctx context.Context, query string, count int) ([]se
6969

7070
req.Header.Set("X-Subscription-Token", c.apiKey)
7171
req.Header.Set("Accept", "application/json")
72-
req.Header.Set("User-Agent", "hawk/0.0.1")
72+
req.Header.Set("User-Agent", "hawk/0.1.0")
7373

7474
resp, err := c.http.Do(req)
7575
if err != nil {

tool/web_search_searxng.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ func (c *searxngClient) search(ctx context.Context, query string, count int) ([]
6969
}
7070

7171
req.Header.Set("Accept", "application/json")
72-
req.Header.Set("User-Agent", "hawk/0.0.1")
72+
req.Header.Set("User-Agent", "hawk/0.1.0")
7373

7474
resp, err := c.http.Do(req)
7575
if err != nil {

0 commit comments

Comments
 (0)