Skip to content

Releases: mikeb26/bashgpt

bashgpt (v1.0.6)

Choose a tag to compare

@mikeb26 mikeb26 released this 09 Jul 22:13
Update to GPT 5.6 luna

bashgpt (v1.0.5)

Choose a tag to compare

@mikeb26 mikeb26 released this 11 May 22:07
bae5083
Switch to GPT 5.4 nano

bashgpt (v1.0.4)

Choose a tag to compare

@mikeb26 mikeb26 released this 11 Dec 21:06
4aee14b
Update to GPT 5.2

bashgpt (v1.0.3)

Choose a tag to compare

@mikeb26 mikeb26 released this 17 Nov 21:25
e9e1ee6
Update to GPT 5.1

bashgpt (v1.0.2)

Choose a tag to compare

@mikeb26 mikeb26 released this 07 Aug 20:12
ecb9c09
Update to gpt-5-mini

bashgpt (v1.0.1)

Choose a tag to compare

@mikeb26 mikeb26 released this 13 Jun 18:09
44d9955
downgrade from o3 to o4-mini

o3 is not accessible for all users.

bashgpt (v1.0.0)

Choose a tag to compare

@mikeb26 mikeb26 released this 13 Jun 18:05
3b725ef
upgrade from gpt4o to o3

bashgpt (v0.2.4)

Choose a tag to compare

@mikeb26 mikeb26 released this 30 May 17:38
3e4be8b
Upgrade to GPT4o

bashgpt (v0.2.3)

Choose a tag to compare

@mikeb26 mikeb26 released this 29 Jan 17:04
85b7e53
Update dependencies

bashgpt (v0.2.2)

Choose a tag to compare

@mikeb26 mikeb26 released this 08 Nov 22:49
7722df5
Build w/ CGO_ENABLED=0

The CircleCI go build images' toolchain depends on a version of GLIBC
that is higher than the version that ships on Ubuntu 20.04. This means
users trying to install the released binaries on Ubuntu 20.04 will
see:

```
$ bashgpt
bashgpt: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not
  found (required by bashgpt)
bashgpt: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not
  found (required by bashgpt)
```

This commit attempts to mitigate the problem by building w/
CGO_ENABLED=0 as suggested by:
https://github.com/golang/go/issues/57328