Skip to content

Commit

Permalink
docs(release): 1.0.0 (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeymike authored Aug 15, 2024
1 parent 247873e commit 2056f24
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 89 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

Check our main [developer changelog](https://developer.paddle.com/?utm_source=dx&utm_medium=paddle-go-sdk) for information about changes to the Paddle Billing platform, the Paddle API, and other developer tools.

## 1.0.0 - 2024-08-15

No documented changes.

## 0.7.0 - 2024-08-09

### Changed
Expand Down
89 changes: 1 addition & 88 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ Go 1.21 or later

If you've used this SDK, we'd love to hear how you found it! Email us at [[email protected]](mailto:[email protected]) with any thoughts.

While in early access, we may introduce breaking changes. Where we can, we'll tag breaking changes and communicate ahead of time.

## Installation

Make sure your project is using Go Modules (it will have a go.mod file in its root if it already is):
Expand Down Expand Up @@ -75,7 +73,7 @@ if err != nil {
panic(err)
}

err = products.Iter(ctx, func(p *paddle.ProductWithIncludes) (bool, error) {
err = products.Iter(ctx, func(p *paddle.Product) (bool, error) {
// Do something with the product
fmt.Printf("%+v\n", p)
return true, nil
Expand Down Expand Up @@ -162,91 +160,6 @@ webhookVerifier := paddle.NewWebhookVerifier(os.Getenv("WEBHOOK_SECRET_KEY"))
ok, err := webhookVerifier.Verify(req)
```

## Feature parity

While in early access, not all operations in the Paddle API are available in our Go SDK. We're working on complete feature parity for our final release.

This table shows which operations are available as of the latest release.

| Paddle API operation | Support |
|----------------------------------------------|:--------:|
| **Products** | **Full** |
| List products ||
| Create a product ||
| Get a product ||
| Update a product ||
| **Prices** | **Full** |
| List prices ||
| Create a price ||
| Get a price ||
| Update a price ||
| **Discounts** | **Full** |
| List discounts ||
| Create a discount ||
| Get a discount ||
| Update a discount ||
| **Customers** | **Full** |
| List customers ||
| Create a customer ||
| Get a customer ||
| Update a customer ||
| List credit balances for a customer ||
| **Addresses** | **Full** |
| List addresses for a customer ||
| Create an addresses for a customer ||
| Get an address for a customer ||
| Update an address for a customer ||
| **Businesses** ||
| List businesses for a customer ||
| Create a business for a customer ||
| Get a business for a customer ||
| Update a business for a customer ||
| **Transactions** | **Full** |
| List transactions ||
| Create a transaction ||
| Get a transaction ||
| Update a transaction ||
| Preview a transaction ||
| Get a PDF invoice for a transaction ||
| **Subscriptions** | **Full** |
| List subscriptions ||
| Get a subscription ||
| Preview an update to a subscription ||
| Update a subscription ||
| Get a transaction to update payment method ||
| Preview a one-time charge for a subscription ||
| Create a one-time charge for a subscription ||
| Activate a trialing subscription ||
| Pause a subscription ||
| Resume a paused subscription ||
| Cancel a subscription ||
| **Adjustments** | **Full** |
| List adjustments ||
| Create an adjustment ||
| **Pricing preview** | **Full** |
| Preview prices ||
| **Reports** | **Full** |
| List reports ||
| Create a report ||
| Get a report ||
| Get a CSV file for a report ||
| **Notification settings** | **Full** |
| List notification settings ||
| Create a notification setting ||
| Get a notification setting ||
| Update a notification setting ||
| Delete a notification setting ||
| **Event types** | **Full** |
| List event types ||
| **Events** | **Full** |
| List events ||
| **Notifications** | **Full** |
| List notifications ||
| Get a notification ||
| Replay a notification ||
| **Notification logs** | **Full** |
| List logs for a notification ||

## Learn more

- [Paddle API reference](https://developer.paddle.com/api-reference/overview?utm_source=dx&utm_medium=paddle-go-sdk)
Expand Down
2 changes: 1 addition & 1 deletion internal/client/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0
1.0.0

0 comments on commit 2056f24

Please sign in to comment.