Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: 2.22.1 #315

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
15 changes: 7 additions & 8 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,18 @@ RUN apt-get update && apt-get install -y \
libxkbcommon0 \
ca-certificates \
git \
golang \
unzip \
libc++1 \
vim \
curl \
procps \
&& apt-get clean autoclean

RUN curl -OL https://go.dev/dl/go1.24.0.linux-amd64.tar.gz && \
tar -C /usr/local -xzvf go1.24.0.linux-amd64.tar.gz && \
rm go1.24.0.linux-amd64.tar.gz
ENV PATH="$PATH:/usr/local/go/bin"

# 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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.22.0"
".": "2.22.1"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 2.22.1 (2025-02-27)

Full Changelog: [v2.22.0...v2.22.1](https://github.com/Modern-Treasury/modern-treasury-go/compare/v2.22.0...v2.22.1)

### Chores

* **internal:** fix devcontainers setup ([#314](https://github.com/Modern-Treasury/modern-treasury-go/issues/314)) ([509f9b6](https://github.com/Modern-Treasury/modern-treasury-go/commit/509f9b684bf5d3ce96de16fc600756616899cd75))


### Documentation

* update URLs from stainlessapi.com to stainless.com ([#316](https://github.com/Modern-Treasury/modern-treasury-go/issues/316)) ([f60edfe](https://github.com/Modern-Treasury/modern-treasury-go/commit/f60edfe0a4c869f1dfcf0fdddf35646ce1aedfc7))

## 2.22.0 (2025-02-14)

Full Changelog: [v2.21.0...v2.22.0](https://github.com/Modern-Treasury/modern-treasury-go/compare/v2.21.0...v2.22.0)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Or to pin the version:
<!-- x-release-please-start-version -->

```sh
go get -u 'github.com/Modern-Treasury/modern-treasury-go/[email protected].0'
go get -u 'github.com/Modern-Treasury/modern-treasury-go/[email protected].1'
```

<!-- x-release-please-end -->
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

## Reporting Security Issues

This SDK is generated by [Stainless Software Inc](http://stainlessapi.com). Stainless takes security seriously, and encourages you to report any security vulnerability promptly so that appropriate action can be taken.
This SDK is generated by [Stainless Software Inc](http://stainless.com). Stainless takes security seriously, and encourages you to report any security vulnerability promptly so that appropriate action can be taken.

To report a security issue, please contact the Stainless team at security@stainlessapi.com.
To report a security issue, please contact the Stainless team at security@stainless.com.

## Responsible Disclosure

Expand Down
6 changes: 3 additions & 3 deletions counterparty_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func TestCounterpartyNewWithOptionalParams(t *testing.T) {
PaymentType: moderntreasury.F(moderntreasury.CounterpartyNewParamsAccountsRoutingDetailsPaymentTypeACH),
}}),
}}),
Email: moderntreasury.F("dev@stainlessapi.com"),
Email: moderntreasury.F("dev@stainless.com"),
LedgerType: moderntreasury.F(moderntreasury.CounterpartyNewParamsLedgerTypeCustomer),
LegalEntity: moderntreasury.F(moderntreasury.CounterpartyNewParamsLegalEntity{
LegalEntityType: moderntreasury.F(moderntreasury.CounterpartyNewParamsLegalEntityLegalEntityTypeBusiness),
Expand Down Expand Up @@ -296,7 +296,7 @@ func TestCounterpartyUpdateWithOptionalParams(t *testing.T) {
context.TODO(),
"id",
moderntreasury.CounterpartyUpdateParams{
Email: moderntreasury.F("dev@stainlessapi.com"),
Email: moderntreasury.F("dev@stainless.com"),
LegalEntityID: moderntreasury.F("182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"),
Metadata: moderntreasury.F(map[string]string{
"foo": "string",
Expand Down Expand Up @@ -332,7 +332,7 @@ func TestCounterpartyListWithOptionalParams(t *testing.T) {
AfterCursor: moderntreasury.F("after_cursor"),
CreatedAtLowerBound: moderntreasury.F(time.Now()),
CreatedAtUpperBound: moderntreasury.F(time.Now()),
Email: moderntreasury.F("dev@stainlessapi.com"),
Email: moderntreasury.F("dev@stainless.com"),
LegalEntityID: moderntreasury.F("legal_entity_id"),
Metadata: moderntreasury.F(map[string]string{
"foo": "string",
Expand Down
2 changes: 1 addition & 1 deletion internal/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

package internal

const PackageVersion = "2.22.0" // x-release-please-version
const PackageVersion = "2.22.1" // x-release-please-version