Skip to content

Commit

Permalink
feat(chore): bumping version and adding change log
Browse files Browse the repository at this point in the history
  • Loading branch information
barbmarcio committed Jul 29, 2024
1 parent 69a88c7 commit 0b7f332
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ The format is loosely based on [Keep a Changelog](https://keepachangelog.com/en/
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
We follow the format used by [Open Telemetry](https://github.com/open-telemetry/opentelemetry-python/blob/main/CHANGELOG.md).

## Version 0.2.0 (2024-07-29)

- Adding `userAgent: string` as part of Config for requests
- Adding `retry: boolean` as part of `reportEvent` response
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const config = {
// generate your api key in the auction manager - it should look some thing like this
// note: this is an invalid key and won't work, you need to replace it with your own
apiKey: "TSE_4S6o1g1CB5tyRENfhDMAn6viR7A5cy3j1JAR",
userAgent?: "Mozilla/5.0" // optional user agent to be added as part of the request
};

createAuction(config, auctionDetails)
Expand Down Expand Up @@ -133,6 +134,7 @@ const event: TopsortEvent = {
const config = {
// generate your api key in the auction manager - it should look some thing like this
apiKey: "TSE_4S6o1g1CB5tyRENfhDMAn6viR7A5cy3j1JAR",
userAgent?: "Mozilla/5.0" // optional user agent to be added as part of the request
};

reportEvent(config, event)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@topsort/sdk",
"version": "0.1.0",
"version": "0.2.0",
"description": "",
"packageManager": "[email protected]",
"main": "dist/index.js",
Expand Down

0 comments on commit 0b7f332

Please sign in to comment.