diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index 1aa883d..0000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,23 +0,0 @@ -# syntax=docker/dockerfile:1 -FROM debian:bookworm-slim - -RUN apt-get update && apt-get install -y \ - libxkbcommon0 \ - ca-certificates \ - git \ - golang \ - unzip \ - libc++1 \ - vim \ - && apt-get clean autoclean - -# Ensure UTF-8 encoding -ENV LANG=C.UTF-8 -ENV LC_ALL=C.UTF-8 - -ENV GOPATH=/go -ENV PATH=$GOPATH/bin:$PATH - -WORKDIR /workspace - -COPY . /workspace diff --git a/.release-please-manifest.json b/.release-please-manifest.json index fea051a..ea3479b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.47.1" + ".": "1.47.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d1cfaf..c8fa644 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 1.47.2 (2025-12-05) + +Full Changelog: [v1.47.1...v1.47.2](https://github.com/orbcorp/orb-go/compare/v1.47.1...v1.47.2) + +### Bug Fixes + +* rename param to avoid collision ([9ec1b82](https://github.com/orbcorp/orb-go/commit/9ec1b82a0efba38ab619347d7678a874a8c7f8f0)) + ## 1.47.1 (2025-12-05) Full Changelog: [v1.47.0...v1.47.1](https://github.com/orbcorp/orb-go/compare/v1.47.0...v1.47.1) diff --git a/README.md b/README.md index 2b6ec83..266bb6c 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Or to pin the version: ```sh -go get -u 'github.com/orbcorp/orb-go@v1.47.1' +go get -u 'github.com/orbcorp/orb-go@v1.47.2' ``` diff --git a/internal/version.go b/internal/version.go index 944d205..2e20c5f 100644 --- a/internal/version.go +++ b/internal/version.go @@ -2,4 +2,4 @@ package internal -const PackageVersion = "1.47.1" // x-release-please-version +const PackageVersion = "1.47.2" // x-release-please-version