From bdb419cafb0f9bcfc78eb0f22393ae17c882bbe5 Mon Sep 17 00:00:00 2001 From: Timur Shemsedinov Date: Fri, 18 Mar 2022 22:33:03 +0200 Subject: [PATCH] Version 2.0.5 PR-URL: https://github.com/metarhia/metacom/pull/290 --- CHANGELOG.md | 8 ++++++-- LICENSE | 2 +- README.md | 1 - package-lock.json | 2 +- package.json | 2 +- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 03c28f12..3256a0fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,14 @@ ## [Unreleased][unreleased] +## [2.0.5][] - 2022-03-18 + - Fix clients Map memory leak - Add static create method for server-side Client - Add open and close events in browser-side Client - Add common content types (MIME) to collection -- Pass custom errors with `code` thrown from handlers to user +- Pass custom errors with `code` thrown or returned from handlers +- Update dependencies ## [2.0.4][] - 2021-10-12 @@ -168,7 +171,8 @@ Module stub v0.0.0 and all before 1.0.0 are experiments with syntactic and binary structures and multiple different ideas originated from JSTP and old protocols like USP and CLEAR. -[unreleased]: https://github.com/metarhia/metacom/compare/v2.0.4...HEAD +[unreleased]: https://github.com/metarhia/metacom/compare/v2.0.5...HEAD +[2.0.5]: https://github.com/metarhia/metacom/compare/v2.0.4...v2.0.5 [2.0.4]: https://github.com/metarhia/metacom/compare/v2.0.3...v2.0.4 [2.0.3]: https://github.com/metarhia/metacom/compare/v2.0.2...v2.0.3 [2.0.2]: https://github.com/metarhia/metacom/compare/v2.0.1...v2.0.2 diff --git a/LICENSE b/LICENSE index 9a1ef034..3f9ee8fc 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018-2021 Metarhia contributors +Copyright (c) 2018-2022 Metarhia contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index c5f8072c..0f46da88 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # Metacom Communication Protocol for Metarhia [![ci status](https://github.com/metarhia/metacom/workflows/Testing%20CI/badge.svg)](https://github.com/metarhia/metacom/actions?query=workflow%3A%22Testing+CI%22+branch%3Amaster) -[![codacy](https://api.codacy.com/project/badge/Grade/80885bfdb4bd411da51f31a7593c1f65)](https://www.codacy.com/app/metarhia/metacom) [![snyk](https://snyk.io/test/github/metarhia/metacom/badge.svg)](https://snyk.io/test/github/metarhia/metacom) [![npm version](https://badge.fury.io/js/metacom.svg)](https://badge.fury.io/js/metacom) [![npm downloads/month](https://img.shields.io/npm/dm/metacom.svg)](https://www.npmjs.com/package/metacom) diff --git a/package-lock.json b/package-lock.json index f7bc16cc..2bbee9ef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "metacom", - "version": "2.0.4", + "version": "2.0.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c4029136..1c5155d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "metacom", - "version": "2.0.4", + "version": "2.0.5", "author": "Timur Shemsedinov ", "description": "Communication protocol for Metarhia stack with rpc, events, binary streams, memory and db access", "license": "MIT",