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 CHANGED
@@ -116,19 +116,25 @@
116
116
  }
117
117
  ],
118
118
  [
119
- "@semantic-release/git",
119
+ "@semantic-release/npm",
120
120
  {
121
- "message": "chore: release ${nextRelease.version}",
122
- "assets": ["package.json", "CHANGELOG.md", "openapi.yml", "api/*", "model/*"]
121
+ "npmPublish": true,
122
+ "tarballDir": "dist"
123
123
  }
124
124
  ],
125
125
  [
126
- "@semantic-release/npm",
126
+ "@semantic-release/git",
127
127
  {
128
- "npmPublish": true,
129
- "tarballDir": "dist"
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.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.0
42
+ npm install --save gopadjs@1.0.1
43
43
  ```
44
44
 
45
45
  ### Installation with Git
package/openapi.yml CHANGED
@@ -1,6 +1,6 @@
1
1
  ---
2
2
  npmName: gopadjs
3
- npmVersion: 1.0.0
3
+ npmVersion: 1.0.1
4
4
  supportsES6: true
5
5
  useSingleRequestParameter: true
6
6
  withNodeImports: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gopadjs",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "OpenAPI client for Gopad",
5
5
  "homepage": "https://github.com/gopad/gopad-js#readme",
6
6
  "license": "Apache-2.0",