diff --git a/CHANGELOG.md b/CHANGELOG.md index ae136d4..c0d6c1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,19 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [0.6.0](https://github.com/DIY0R/file-graph/compare/0.5.3...0.6.0) + +- style: logical arrangement of methods [`48b0d0e`](https://github.com/DIY0R/file-graph/commit/48b0d0ebb83c5e60979842efcf519b6ecd6d7eff) +- feat: add public createVertices method [`c744ade`](https://github.com/DIY0R/file-graph/commit/c744adeb7b7991231b744d1b0f10a6df3d25883a) +- refactor: transition to async/await syntax [`4bb6178`](https://github.com/DIY0R/file-graph/commit/4bb61782a0f99667fd72b0e717d601942635d835) +- test: creates multiple vertices [`f972898`](https://github.com/DIY0R/file-graph/commit/f972898eb275cb529a6f71cf43f46b3164fc482a) +- chore: bump @types/node from 22.4.1 to 22.5.0 [`2735a72`](https://github.com/DIY0R/file-graph/commit/2735a725396644a72dbdd5b42ea1dae7410fd990) + #### [0.5.3](https://github.com/DIY0R/file-graph/compare/0.5.2...0.5.3) +> 21 August 2024 + +- chore: version v0.5.3 [`e59f8fe`](https://github.com/DIY0R/file-graph/commit/e59f8feb0cda753ebce505a7050fb9a5e136aa4d) - chore: update module resolution to 'Node' [`0cda98b`](https://github.com/DIY0R/file-graph/commit/0cda98beedb9530a4b950ac4c5920012ef253db3) #### [0.5.2](https://github.com/DIY0R/file-graph/compare/0.5.1...0.5.2) diff --git a/package-lock.json b/package-lock.json index 852de7b..b534665 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "file-graph", - "version": "0.5.3", + "version": "0.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "file-graph", - "version": "0.5.3", + "version": "0.6.0", "license": "MIT", "devDependencies": { "@commitlint/cli": "^19.3.0", diff --git a/package.json b/package.json index 9326424..edc8117 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "file-graph", - "version": "0.5.3", + "version": "0.6.0", "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts",