Skip to content

Commit 3ea0cd1

Browse files
committed
chore: update version to 2.6.1 in CONTRIBUTING.md, README.md, and flake.nix
1 parent 99c92df commit 3ea0cd1

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ Please include:
6666
2. Create and push a tag:
6767

6868
```bash
69-
git tag -a v2.6.0 -m "Release v2.6.0"
70-
git push origin v2.6.0
69+
git tag -a v2.6.1 -m "Release v2.6.1"
70+
git push origin v2.6.1
7171
```
7272

7373
3. GitHub Actions will:

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Redirect all subdomains to the machine (`*.hostname.local` → `hostname.local`)
2323
2. **Docker**:
2424

2525
```bash
26-
docker run -d --network host -v "/var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket" ghcr.io/grishy/go-avahi-cname:2.6.0
26+
docker run -d --network host -v "/var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket" ghcr.io/grishy/go-avahi-cname:2.6.1
2727
```
2828

2929
_Note:_ If you [encounter issues](https://github.com/grishy/go-avahi-cname/issues/28) with AppArmor, add `--security-opt apparmor=unconfined` to the Docker command or include the following in your Docker Compose file:
@@ -149,7 +149,7 @@ services:
149149
- apparmor=unconfined # required if AppArmor restricts access
150150
volumes:
151151
- "/var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket"
152-
image: "ghcr.io/grishy/go-avahi-cname:2.6.0"
152+
image: "ghcr.io/grishy/go-avahi-cname:2.6.1"
153153
```
154154

155155
If AppArmor denies access, include the `security_opt` section as shown above.
@@ -160,7 +160,7 @@ Ansible task to run the container:
160160
- name: go-avahi-cname | Start container
161161
community.docker.docker_container:
162162
name: "go-avahi-cname"
163-
image: "ghcr.io/grishy/go-avahi-cname:2.6.0"
163+
image: "ghcr.io/grishy/go-avahi-cname:2.6.1"
164164
restart_policy: unless-stopped
165165
network_mode: host
166166
security_opts:
@@ -198,9 +198,9 @@ sudo busctl monitor org.freedesktop.Avahi
198198
Reminder for me, just create a tag and push it.
199199

200200
```bash
201-
# Replace 2.6.0 with the new version in project
202-
git tag -a v2.6.0 -m "Release v2.6.0"
203-
git push origin v2.6.0
201+
# Replace 2.6.1 with the new version in project
202+
git tag -a v2.6.1 -m "Release v2.6.1"
203+
git push origin v2.6.1
204204
```
205205

206206
## Source of inspiration

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
system:
1717
let
1818
pkgs = nixpkgs.legacyPackages.${system};
19-
version = "2.6.0";
19+
version = "2.6.1";
2020
in
2121
{
2222
packages = {

0 commit comments

Comments
 (0)