Skip to content

Commit

Permalink
release(sdk): v2.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
NumaryBot committed Dec 19, 2023
1 parent 69c4ef9 commit c234a90
Show file tree
Hide file tree
Showing 1,024 changed files with 35,883 additions and 9,071 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# This allows generated code to be indexed correctly
*.go linguist-generated=false
38 changes: 19 additions & 19 deletions .github/workflows/speakeasy_sdk_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,27 @@ name: Publish
"on":
push:
branches:
- main
# paths:
# - RELEASES.md
- release/v*.*.*
- release/v*.*.*-alpha.*
- release/v*.*.*-beta.*
- release/v*.*.*-rc.*version
jobs:
Release:
name: 'Release'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get version from gen.yaml
id: get_version
uses: mikefarah/yq@master
with:
cmd: yq '.go.version' gen.yaml
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.get_version.outputs.result }}
release_name: Release ${{ steps.get_version.outputs.result }}
draft: false
prerelease: false
- uses: actions/checkout@v4
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/release/}}" >> $GITHUB_OUTPUT
id: extract_branch
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ steps.extract_branch.outputs.branch }}
release_name: Release ${{ steps.extract_branch.outputs.branch }}
draft: false
prerelease: false
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# .gitignore
.DS_Store
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Formance, Inc

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
426 changes: 293 additions & 133 deletions README.md

Large diffs are not rendered by default.

29 changes: 14 additions & 15 deletions USAGE.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
<!-- Start SDK Example Usage -->


```go
package main

import(
import (
"context"
formancesdkgo "github.com/formancehq/formance-sdk-go"
"log"
"github.com/formancehq/formance-sdk-go"
)

func main() {
s := formance.New(
formance.WithSecurity(shared.Security{
Authorization: "Bearer YOUR_ACCESS_TOKEN_HERE",
}),
)
s := formancesdkgo.New()

ctx := context.Background()
res, err := s.GetVersions(ctx)
if err != nil {
log.Fatal(err)
}
ctx := context.Background()
res, err := s.Formance.GetVersions(ctx)
if err != nil {
log.Fatal(err)
}

if res.GetVersionsResponse != nil {
// handle response
}
if res.GetVersionsResponse != nil {
// handle response
}
}

```
<!-- End SDK Example Usage -->
Loading

0 comments on commit c234a90

Please sign in to comment.