Skip to content

Commit 44f8ef5

Browse files
smrz2001Github Automationnathanielc
authored
chore(sdk): version v0.3.0 (#694)
* chore(sdk): version v0.3.0 * chore: fix lint * fix: fix create pr script to lint --------- Co-authored-by: Github Automation <github@3box.io> Co-authored-by: Nathaniel Cook <nvcook42@gmail.com>
1 parent 22e829e commit 44f8ef5

15 files changed

Lines changed: 20 additions & 14 deletions

File tree

ci-scripts/sdk_release_pr.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,19 @@
1414
# Fail script if any command fails
1515
set -e
1616

17+
SDK_DIR=$(dirname $0)/../sdk
18+
1719
# Bump version of all packages
1820
for p in $(pwd)/sdk/packages/*
1921
do
2022
cd $p
2123
version=$(npm version minor)
2224
done
2325

26+
# Run lint fix to fix the issues the npm version command creates
27+
cd $SDK_DIR
28+
pnpm run lint:fix
29+
2430
# Ensure we are in the git root
2531
cd $(git rev-parse --show-toplevel)
2632

sdk/packages/events/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ceramic-sdk/events",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"author": "3Box Labs",
55
"license": "(Apache-2.0 OR MIT)",
66
"keywords": ["ceramic", "events"],

sdk/packages/flight-sql-client/npm/darwin-arm64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ceramic-sdk/flight-sql-client-darwin-arm64",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"os": ["darwin"],
55
"cpu": ["arm64"],
66
"main": "flight-sql-client.darwin-arm64.node",

sdk/packages/flight-sql-client/npm/darwin-x64/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ceramic-sdk/flight-sql-client-darwin-x64",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"os": ["darwin"],
55
"cpu": ["x64"],
66
"main": "flight-sql-client.darwin-x64.node",

sdk/packages/flight-sql-client/npm/linux-x64-gnu/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ceramic-sdk/flight-sql-client-linux-x64-gnu",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"os": ["linux"],
55
"cpu": ["x64"],
66
"main": "flight-sql-client.linux-x64-gnu.node",

sdk/packages/flight-sql-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ceramic-sdk/flight-sql-client",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "A FlightSQL client. Currently only supports Node.js",
55
"main": "index.js",
66
"types": "index.d.ts",

sdk/packages/http-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ceramic-sdk/http-client",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"author": "3Box Labs",
55
"license": "(Apache-2.0 OR MIT)",
66
"keywords": ["ceramic", "http", "client"],

sdk/packages/identifiers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ceramic-sdk/identifiers",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"author": "3Box Labs",
55
"license": "(Apache-2.0 OR MIT)",
66
"keywords": ["ceramic", "identifiers"],

sdk/packages/model-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ceramic-sdk/model-client",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"author": "3Box Labs",
55
"license": "(Apache-2.0 OR MIT)",
66
"keywords": ["ceramic", "stream", "model", "client"],

sdk/packages/model-instance-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ceramic-sdk/model-instance-client",
3-
"version": "0.2.1",
3+
"version": "0.3.0",
44
"author": "3Box Labs",
55
"license": "(Apache-2.0 OR MIT)",
66
"keywords": ["ceramic", "stream", "model", "document", "client"],

0 commit comments

Comments
 (0)