gopadjs 1.0.0 → 1.0.1
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/.releaserc +13 -7
- package/CHANGELOG.md +7 -0
- package/README.md +2 -2
- package/openapi.yml +1 -1
- package/package.json +1 -1
package/.releaserc
CHANGED
|
@@ -116,19 +116,25 @@
|
|
|
116
116
|
}
|
|
117
117
|
],
|
|
118
118
|
[
|
|
119
|
-
"@semantic-release/
|
|
119
|
+
"@semantic-release/npm",
|
|
120
120
|
{
|
|
121
|
-
"
|
|
122
|
-
"
|
|
121
|
+
"npmPublish": true,
|
|
122
|
+
"tarballDir": "dist"
|
|
123
123
|
}
|
|
124
124
|
],
|
|
125
125
|
[
|
|
126
|
-
"@semantic-release/
|
|
126
|
+
"@semantic-release/git",
|
|
127
127
|
{
|
|
128
|
-
|
|
129
|
-
|
|
128
|
+
"message": "chore: release ${nextRelease.version}",
|
|
129
|
+
"assets": [
|
|
130
|
+
"package.json",
|
|
131
|
+
"CHANGELOG.md",
|
|
132
|
+
"openapi.yml",
|
|
133
|
+
"api/*",
|
|
134
|
+
"model/*"
|
|
135
|
+
]
|
|
130
136
|
}
|
|
131
|
-
|
|
137
|
+
],
|
|
132
138
|
[
|
|
133
139
|
"@semantic-release/github",
|
|
134
140
|
{
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.0.1](https://github.com/gopad/gopad-js/compare/v1.0.0...v1.0.1) (2024-05-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bugfixes
|
|
7
|
+
|
|
8
|
+
* make sure to update package version ([7c2abd2](https://github.com/gopad/gopad-js/commit/7c2abd226d6996bb9f792ae796c28f6b26750265))
|
|
9
|
+
|
|
3
10
|
## 1.0.0 (2024-05-26)
|
|
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.0.
|
|
9
|
+
- Package version: 1.0.1
|
|
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.0.
|
|
42
|
+
npm install --save gopadjs@1.0.1
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
### Installation with Git
|
package/openapi.yml
CHANGED