From 1ce87ea00a9b3f9df79195da39b9a81a6223b71a Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 25 Oct 2023 15:12:08 +0000 Subject: [PATCH] chore(release): 1.0.0-beta.1 [skip ci] # 1.0.0-beta.1 (2023-10-25) ### Bug Fixes * update lib/index.ts to export other files ([09b0da0](https://github.com/ronati/narango/commit/09b0da02a17fc6a523ee50ce43c2c7c110d947d5)) ### Features * add MIT license ([88223a4](https://github.com/ronati/narango/commit/88223a4c594494d55ab2aa2bdc5acb28e64a7616)) * **arango:** create nestjs service ([aa31864](https://github.com/ronati/narango/commit/aa31864f627c3cf00b8bdf1961c5e8ba900835aa)), closes [#4](https://github.com/ronati/narango/issues/4) --- CHANGELOG.md | 12 ++++++++++++ package-lock.json | 4 ++-- package.json | 6 ++++-- 3 files changed, 18 insertions(+), 4 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..af38260 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# 1.0.0-beta.1 (2023-10-25) + + +### Bug Fixes + +* update lib/index.ts to export other files ([09b0da0](https://github.com/ronati/narango/commit/09b0da02a17fc6a523ee50ce43c2c7c110d947d5)) + + +### Features + +* add MIT license ([88223a4](https://github.com/ronati/narango/commit/88223a4c594494d55ab2aa2bdc5acb28e64a7616)) +* **arango:** create nestjs service ([aa31864](https://github.com/ronati/narango/commit/aa31864f627c3cf00b8bdf1961c5e8ba900835aa)), closes [#4](https://github.com/ronati/narango/issues/4) diff --git a/package-lock.json b/package-lock.json index 451c281..01bac13 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ronatilabs/narango", - "version": "0.0.0-development", + "version": "1.0.0-beta.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@ronatilabs/narango", - "version": "0.0.0-development", + "version": "1.0.0-beta.1", "license": "ISC", "devDependencies": { "@commitlint/cli": "^17.8.0", diff --git a/package.json b/package.json index 6d3bc00..f72b861 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,15 @@ { "name": "@ronatilabs/narango", - "version": "0.0.0-development", + "version": "1.0.0-beta.1", "description": "A NestJS wrapper service for ArangoDB NodeJS driver", "exports": "./dist/index.js", "typings": "./dist/index.d.ts", "engines": { "node": "^18.0.0" }, - "files": ["dist"], + "files": [ + "dist" + ], "scripts": { "build": "tsc -p tsconfig.build.json", "lint": "eslint 'lib/**/*.ts'",