@stainless-api/docs 0.1.0-beta.132 → 0.1.0-beta.133

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @stainless-api/docs
2
2
 
3
+ ## 0.1.0-beta.133
4
+
5
+ ### Patch Changes
6
+
7
+ - db5d00d: Fix for go version in install string
8
+
3
9
  ## 0.1.0-beta.132
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stainless-api/docs",
3
- "version": "0.1.0-beta.132",
3
+ "version": "0.1.0-beta.133",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -85,6 +85,10 @@ async function generateSpecFromStrings({
85
85
  if (versionInfo) {
86
86
  for (const [lang, version] of Object.entries(versionInfo)) {
87
87
  const meta = sdkJson.metadata[lang as SDKJSON.SpecLanguage];
88
+ if (meta?.install && meta?.version) {
89
+ meta.install = meta.install.replace(meta.version, version);
90
+ }
91
+
88
92
  if (meta?.version) meta.version = version;
89
93
  }
90
94
  }