diff --git a/changelog.md b/changelog.md index e4fb9ec..61e816f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2025-01-19 - 2.1.4 - fix(documentation) +Remove unnecessary conclusion section from the README for better clarity. + +- Removed the 'Conclusion' header which was redundant in the README. + ## 2025-01-19 - 2.1.3 - fix(readme) Update README.md for better clarity and examples. diff --git a/readme.md b/readme.md index c5e7883..f3c6303 100644 --- a/readme.md +++ b/readme.md @@ -195,8 +195,6 @@ export default tap.start(); ``` -### Conclusion - With this updated `runScoped` design, there’s no need to explicitly instantiate or manage child stores. The context automatically switches from the parent store to the child store while within the callback, then reverts back to the parent store afterwards. This structure makes it easy to: - Keep each async operation’s state isolated diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 9d820fe..6b10925 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartcontext', - version: '2.1.3', + version: '2.1.4', description: 'A module providing advanced asynchronous context management to enrich logs with context and manage scope effectively in Node.js applications.' }