From 73b4e259ab6967d6701ddcbf99ccfa76ee5ed437 Mon Sep 17 00:00:00 2001 From: Steven Liu Date: Fri, 4 Oct 2019 15:00:44 +0100 Subject: [PATCH 1/2] v0.13.4 release --- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dbeafbd0c3..5092506f8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. The changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## [0.13.4] - 04-Oct-2019 + +**Milestone**: Elephant.3 / Fuschicho + +- Added `Metadata` rest api endpoints and DTOs +- Added `MosaicRestriction` rest api endpoints and DTOs +- Added `MetadataTransactionService` which eases the meta data transaction creation without knowing previous meta data values +- Added `MosaicRestrictionTransactionService` which eases the mosaic restriction transaction creation without knowing previous restriction details. +- Changed `MetadataTransaction` and `Metadata state` value to use raw string (utf8 encoding). +- Fixed `Namespace/Names` endpoint issue +- Fixed `Mosaic` endpoint issue +- Improved unit and e2e tests + ## [0.13.3] - 27-Sep-2019 **Milestone**: Elephant.3 @@ -193,6 +206,8 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e **Milestone**: Alpaca - Initial code release. +[0.13.4]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.13.3...v0.13.4 +[0.13.3]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.13.2...v0.13.3 [0.13.2]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.13.1...v0.13.2 [0.13.1]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.13.0...v0.13.1 [0.13.0]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.12.4...v0.13.0 diff --git a/README.md b/README.md index 35b817a472..184252c8e7 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ with the NEM2 (a.k.a Catapult) ### _Elephant_ Network Compatibility (catapult-server@0.7.0.1) -Due to a network upgrade with [catapult-server@elephant3](https://github.com/nemtech/catapult-server/releases/tag/v0.7.0.1) version, **it is recommended to use this package's 0.13.3 version and upwards to use this package with Elephant versioned networks**. +Due to a network upgrade with [catapult-server@elephant3](https://github.com/nemtech/catapult-server/releases/tag/v0.7.0.1) version, **it is recommended to use this package's 0.13.4 version and upwards to use this package with Elephant versioned networks**. The upgrade to this package's [version v0.13.3](https://github.com/nemtech/nem2-sdk-typescript-javascript/releases/tag/v0.13.3) is mandatory for **elephant compatibility**. From 04c181fe11f407e1cb7ef99686254e03cabcbe11 Mon Sep 17 00:00:00 2001 From: Steven Liu Date: Fri, 4 Oct 2019 15:03:00 +0100 Subject: [PATCH 2/2] v0.13.4: Added Metadata and MosaicRestriction endpoints and services --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 09698d6612..cbad831d98 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nem2-sdk", - "version": "0.13.3", + "version": "0.13.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index ed6ecc6e12..ab5d4e7e91 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nem2-sdk", - "version": "0.13.3", + "version": "0.13.4", "description": "Reactive Nem2 sdk for typescript and javascript", "scripts": { "pretest": "npm run build",