Skip to content

Commit d179d4e

Browse files
authored
120240612.0.0 (#83)
* rc * codegen * codegen * update * 120240612.0.0 * update readme
1 parent be277c3 commit d179d4e

File tree

14 files changed

+1126
-1785
lines changed

14 files changed

+1126
-1785
lines changed

DEVELOPMENT.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,6 @@ make generate
3131
# in SubstrateLabs/substrate-typescript: copy the generated files
3232
make sync-codegen
3333
34-
# format the code
35-
make format-fix
36-
3734
# ensure the package builds
3835
make build
3936
```
@@ -124,6 +121,8 @@ After making changes, you should:
124121
- Make sure to bump the `SDK_VERSION` in the `bin/update-version.ts` script
125122
- Then run `make update-version` to ensure the `package.json` and `src/version.ts` are set correctly.
126123

124+
**NOTE:** If the API version (the date string) has changed, you should reset the minor and patch version to `0.0`.
125+
127126
**NOTE:** The `make update-version` task will run after every `make sync-codegen` too!
128127

129128
## CI & Git Hooks
@@ -159,7 +158,6 @@ that we'd like to publish.
159158

160159
1. Preview the "pack" (tarball we publish to npm): `make publish-preview`
161160
2. Publish to NPM & push tag to GitHub: `make publish`
162-
3. Create new Release on GitHub (using the web UI). Add release notes, mentions, etc.
163161

164162
**Non-Production Releases**
165163

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ update-version: ensure
2525
sync-codegen: ensure
2626
bin/sync-codegen.ts
2727
make update-version
28+
make format-fix
2829

2930
.PHONY: format-check
3031
format-check: ensure

bin/update-version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { execSync } from "node:child_process";
55

66
// NOTE: Merged with API version to produce the full SDK version string
77
// https://docs.substrate.run/versioning
8-
const SDK_VERSION = "1.0.14";
8+
const SDK_VERSION = "1.0.0";
99

1010
const ok = (message: string) => console.log("\x1b[32m✓\x1b[0m", message);
1111

examples/streaming/nextjs-basic/app/globals.css

-8
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,6 @@
88
--background-end-rgb: 255, 255, 255;
99
}
1010

11-
@media (prefers-color-scheme: dark) {
12-
:root {
13-
--foreground-rgb: 255, 255, 255;
14-
--background-start-rgb: 0, 0, 0;
15-
--background-end-rgb: 0, 0, 0;
16-
}
17-
}
18-
1911
body {
2012
color: rgb(var(--foreground-rgb));
2113
background: linear-gradient(

examples/streaming/nextjs-multiple-nodes/app/globals.css

-8
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,6 @@
88
--background-end-rgb: 255, 255, 255;
99
}
1010

11-
@media (prefers-color-scheme: dark) {
12-
:root {
13-
--foreground-rgb: 255, 255, 255;
14-
--background-start-rgb: 0, 0, 0;
15-
--background-end-rgb: 0, 0, 0;
16-
}
17-
}
18-
1911
body {
2012
color: rgb(var(--foreground-rgb));
2113
background: linear-gradient(

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "substrate",
3-
"version": "120240530.0.14",
3+
"version": "120240612.0.0",
44
"description": "The official SDK for the Substrate API",
55
"repository": {
66
"type": "git",

src/GEN_VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20240530.20240531
1+
20240612.20240613

0 commit comments

Comments
 (0)