gopadjs 1.1.0 → 1.2.0
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/.github/RELEASE +1 -1
- package/.github/workflows/release.yml +0 -3
- package/.releaserc +3 -2
- package/CHANGELOG.md +7 -0
- package/README.md +2 -2
- package/hack/generate-client.sh +1 -1
- package/openapi.yml +1 -1
- package/package.json +1 -1
package/.github/RELEASE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
Tue May 28 13:41:58 UTC 2024
|
package/.releaserc
CHANGED
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"README.md"
|
|
135
135
|
],
|
|
136
136
|
"from": "Package version: .*",
|
|
137
|
-
"to": "Package version
|
|
137
|
+
"to": "Package version: ${nextRelease.version}",
|
|
138
138
|
"results": [
|
|
139
139
|
{
|
|
140
140
|
"file": "README.md",
|
|
@@ -179,7 +179,8 @@
|
|
|
179
179
|
"CHANGELOG.md",
|
|
180
180
|
"package.json",
|
|
181
181
|
"openapi.yml",
|
|
182
|
-
"README.md"
|
|
182
|
+
"README.md",
|
|
183
|
+
"package-lock.json"
|
|
183
184
|
]
|
|
184
185
|
}
|
|
185
186
|
],
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.2.0](https://github.com/gopad/gopad-js/compare/v1.1.0...v1.2.0) (2024-05-28)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* automated openapi client update ([1e2091c](https://github.com/gopad/gopad-js/commit/1e2091c6080ecc6fd8fc55a742709836447730a4))
|
|
9
|
+
|
|
3
10
|
## [1.1.0](https://github.com/gopad/gopad-js/compare/v1.0.1...v1.1.0) (2024-05-28)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ This repository provides a client SDK for Typescript/Javascript. This SDK is
|
|
|
6
6
|
automatically generated by the [OpenAPI Generator][generator] project:
|
|
7
7
|
|
|
8
8
|
- API version: 1.0.0-alpha1
|
|
9
|
-
- Package version:1.
|
|
9
|
+
- Package version: 1.2.0
|
|
10
10
|
- Build package: org.openapitools.codegen.languages.TypeScriptAxiosClientCodegen
|
|
11
11
|
|
|
12
12
|
For more information, please visit [https://gopad.eu](https://gopad.eu)
|
|
@@ -39,7 +39,7 @@ the following command within your project directory, after that you can import
|
|
|
39
39
|
it as other libraries:
|
|
40
40
|
|
|
41
41
|
```console
|
|
42
|
-
npm install --save gopadjs@1.
|
|
42
|
+
npm install --save gopadjs@1.2.0
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
### Installation with Git
|
package/hack/generate-client.sh
CHANGED
package/openapi.yml
CHANGED