Skip to content

Soft quote #17

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

Merged
merged 12 commits into from
Dec 12, 2023
Merged
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
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @valorem-labs-inc/sdk

## 0.0.8

### Patch Changes

- Minor fixes to soft quote parser

## 0.0.7

### Patch Changes

- Exports interfaces for parsing soft quote responses

## 0.0.6

### Patch Changes

- Updates trade-interfaces to v1.2.0

## 0.0.5

### Patch Changes
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,13 @@ We welcome contributions to the Valorem TypeScript SDK!
If you have suggestions, bug reports, or contributions, please submit them
as issues or pull requests in the repository.

To update the version of a package:

1. Make sure `@changesets/cli` is installed locally
2. Then run `pnpm changeset` in your terminal to write a changelog update
3. Then `pnpm changeset version` to to compile changes into changelog.md and bump version
4. Finally run `pnpm build && pnpm publish --no-git-checks --tag alpha` to publish

## License

The Valorem TypeScript SDK is licensed under the MIT License.
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@valorem-labs-inc/sdk",
"version": "0.0.5",
"version": "0.0.8",
"repository": {
"type": "git",
"url": "https://github.com/valorem-labs-inc/typescript-sdk.git"
Expand All @@ -18,6 +18,7 @@
"codegen": "rm -rf ./src/lib/codegen && npx buf generate",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"gen-docs": "typedoc",
"generate:grpc": "npx buf generate",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "git submodule update --init --recursive",
Expand All @@ -30,7 +31,7 @@
"devDependencies": {
"@bufbuild/buf": "^1.28.1",
"@bufbuild/protoc-gen-es": "^1.4.2",
"@changesets/cli": "^2.26.2",
"@changesets/cli": "^2.27.1",
"@connectrpc/connect-node": "^1.1.3",
"@connectrpc/connect-web": "^1.1.3",
"@connectrpc/protoc-gen-connect-es": "^1.1.3",
Expand Down
Loading