diff --git a/CHANGELOG.md b/CHANGELOG.md index be8ec88d..9f001eee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [3.0.0](https://www.github.com/ethersphere/bee-js/compare/v2.1.1...v3.0.0) (2021-11-25) + +This is a small release in size, but big on impact. It is a breaking release thanks to breaking changes introduced in [Bee 1.4](https://github.com/ethersphere/bee/releases/tag/v1.4.0). + +### ⚠ BREAKING CHANGES + +* dropping postage stamps methods from `Bee` class (#458) + +### Features + +* dropping bee class postage stamps methods ([#458](https://www.github.com/ethersphere/bee-js/issues/458)) ([98afdcd](https://www.github.com/ethersphere/bee-js/commit/98afdcd3e4e930f5ea29b46f050c2b5966c850fe)) +* openapi versions in `/health` endpoint and methods ([#459](https://www.github.com/ethersphere/bee-js/issues/459)) ([98afdcd](https://www.github.com/ethersphere/bee-js/commit/98afdcd3e4e930f5ea29b46f050c2b5966c850fe)) + +--- + ### [2.1.1](https://www.github.com/ethersphere/bee-js/compare/v2.1.0...v2.1.1) (2021-11-08) This is small release that fixes few small issues and mainly brings compatibility with the Bee 1.3. @@ -10,6 +25,8 @@ This is small release that fixes few small issues and mainly brings compatibilit * readable-stream should be dependency ([#444](https://www.github.com/ethersphere/bee-js/issues/444)) ([fd39c46](https://www.github.com/ethersphere/bee-js/commit/fd39c460027a6578e8fc2cd8c27507e129f581bf)) * **build:** limit the scope of files that are published to npm +--- + ## [2.1.0](https://www.github.com/ethersphere/bee-js/compare/v2.0.0...v2.1.0) (2021-10-13) This release is a compatibility release with [Bee 1.2.0](https://github.com/ethersphere/bee/releases/tag/v1.2.0) release, which brings few new features. diff --git a/package-lock.json b/package-lock.json index 96325031..6b401323 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@ethersphere/bee-js", - "version": "2.1.1", + "version": "3.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@ethersphere/bee-js", - "version": "2.1.1", + "version": "3.0.0", "license": "BSD-3-Clause", "dependencies": { "cross-blob": "^2.0.1", diff --git a/package.json b/package.json index 9fbaa490..f5473973 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ethersphere/bee-js", - "version": "2.1.1", + "version": "3.0.0", "description": "Javascript client for Bee", "keywords": [ "bee", @@ -27,7 +27,9 @@ "./dist/index.min.js": "./dist/index.browser.min.js", "data": "data.browser" }, - "files": ["dist"], + "files": [ + "dist" + ], "types": "dist/src/index.d.ts", "scripts": { "prepublishOnly": "rimraf dist && npm run compile:types && npm run compile:browser --env mode=production && npm run compile:node --env mode=production",