mongodb-dynamic-api 1.2.0-beta.7 → 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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  Changelog
2
2
 
3
+ ## [1.2.0](https://github.com/MikeDev75015/mongodb-dynamic-api/compare/1.2.0-beta.8...1.2.0) (2024-03-02)
4
+
5
+ ## [1.2.0-beta.8](https://github.com/MikeDev75015/mongodb-dynamic-api/compare/release...1.2.0-beta.8) (2024-03-02)
6
+
3
7
  ## [1.2.0-beta.7](https://github.com/MikeDev75015/mongodb-dynamic-api/compare/prerelease...1.2.0-beta.7) (2024-03-02)
4
8
 
5
9
  ## [1.2.0-beta.6](https://github.com/MikeDev75015/mongodb-dynamic-api/compare/prerelease...1.2.0-beta.6) (2024-03-01)
package/README.md CHANGED
@@ -173,7 +173,7 @@ go to the swagger API path (default to `/openapi`) and you will see the auto gen
173
173
 
174
174
  ![User API](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/images/dynamic-api-user-full.Jpeg?raw=true "User API")
175
175
 
176
- [more screenshots](/README/swagger.md)
176
+ [more screenshots](https://github.com/MikeDev75015/mongodb-dynamic-api/blob/develop/README/swagger.md)
177
177
 
178
178
  ___
179
179
  ### Versioning (optional)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mongodb-dynamic-api",
3
- "version": "1.2.0-beta.7",
3
+ "version": "1.2.0",
4
4
  "description": "Auto generated CRUD API for MongoDB using NestJS",
5
5
  "readmeFilename": "README.md",
6
6
  "main": "index.js",
@@ -15,6 +15,7 @@
15
15
  "test:ci:junit": "jest --ci --runInBand --coverage --testResultsProcessor=jest-junit",
16
16
  "test:ci:sonar": "jest --ci --runInBand --coverage --testResultsProcessor=jest-sonar-reporter",
17
17
  "pre-release-tag": "git tag -f prerelease && git push -f origin prerelease",
18
+ "release-tag": "git tag -f release && git push -f origin release",
18
19
  "prerelease": "release-it --ci --preRelease=beta --no-git.requireUpstream",
19
20
  "release": "release-it --ci",
20
21
  "publish-prerelease": "npm publish ./dist --tag prerelease",
package/src/version.json CHANGED
@@ -1,3 +1,3 @@
1
1
  {
2
- "version": "1.2.0-beta.7"
2
+ "version": "1.2.0"
3
3
  }