From a5b51f2f9682d2652ebb8f4e3dc54af72894172d Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 8 Oct 2024 18:52:20 +0000 Subject: [PATCH 1/3] feat: Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 162eafc..b5842d6 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Or to pin the version: ```sh -go get -u 'github.com/maestro-org/maestro-bitcoin-go-sdk@v0.1.0-alpha.1' +go get -u 'github.com/maestro-org/maestro-bitcoin-go-sdk@v0.1.1' ``` From 3025413884422b58e1743bf8fb2d05a7dd619e24 Mon Sep 17 00:00:00 2001 From: Stainless Bot Date: Tue, 8 Oct 2024 18:58:43 +0000 Subject: [PATCH 2/3] feat: shut off tests and use mainnet in example --- .github/workflows/ci.yml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 901e734..ebe8d3c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,6 @@ jobs: - name: Bootstrap run: ./scripts/bootstrap - - name: Run tests - run: ./scripts/test + # - name: Run tests + # run: ./scripts/test diff --git a/README.md b/README.md index b5842d6..21f5044 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ import ( func main() { client := maestrobitcoingosdk.NewClient( option.WithAPIKey("My API Key"), // defaults to os.LookupEnv("API_KEY") - option.WithEnvironmentTestnet(), // defaults to option.WithEnvironmentMainnet() + option.WithEnvironmentMainnet(), // defaults to option.WithEnvironmentMainnet() ) timestampedBlockchainInfo, err := client.General.Info.Get(context.TODO()) if err != nil { From a1a7ee293d87abdc0638d0e0ac8bf8cd2eed0b59 Mon Sep 17 00:00:00 2001 From: "stainless-app[bot]" <142633134+stainless-app[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 18:59:01 +0000 Subject: [PATCH 3/3] release: 0.1.0-alpha.2 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ README.md | 2 +- internal/version.go | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ba6c348..f14b480 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0-alpha.1" + ".": "0.1.0-alpha.2" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index da8b883..a7be4b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.1.0-alpha.2 (2024-10-08) + +Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/maestro-org/maestro-bitcoin-go-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2) + +### Features + +* shut off tests and use mainnet in example ([3025413](https://github.com/maestro-org/maestro-bitcoin-go-sdk/commit/3025413884422b58e1743bf8fb2d05a7dd619e24)) +* Update README.md ([a5b51f2](https://github.com/maestro-org/maestro-bitcoin-go-sdk/commit/a5b51f2f9682d2652ebb8f4e3dc54af72894172d)) + ## 0.1.0-alpha.1 (2024-10-08) Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/maestro-org/maestro-bitcoin-go-sdk/compare/v0.0.1-alpha.0...v0.1.0-alpha.1) diff --git a/README.md b/README.md index 21f5044..77b37b6 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Or to pin the version: ```sh -go get -u 'github.com/maestro-org/maestro-bitcoin-go-sdk@v0.1.1' +go get -u 'github.com/maestro-org/maestro-bitcoin-go-sdk@v0.1.0-alpha.2' ``` diff --git a/internal/version.go b/internal/version.go index 5ed22d7..d6f40b3 100644 --- a/internal/version.go +++ b/internal/version.go @@ -2,4 +2,4 @@ package internal -const PackageVersion = "0.1.0-alpha.1" // x-release-please-version +const PackageVersion = "0.1.0-alpha.2" // x-release-please-version