diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b5dd4fda4..5c3a77f6ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ 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.2] - 20-Sep-2019 + +**Milestone**: Elephant.3 + +- Added Metadata Transactions (Account, Mosaic and Namespace). +- Added new account restriction type to support `Outgoing` addresses and transaction types. +- Catbuffer builder codes fully implemented. Flatbuffer codes removed. +- Models and services updated to be compatible with latest server (milestone Elephant: patch-3) schema updates. +- Refactored `Uint64` to support `UInt64 to/from: numeric/hex string`. +- Refactored `Signature Schema` to support both `NIS1` and `Catapult`. `Network idendifier` is now used to identify `Signature Schema` on model level. PrivateKey reversal has been removed for `NIS1` schema. +- Added new `Namespace Pruned` receipt type. +- Added new static method `addTransactions` to `AggregateTransction` to support offline embedded transactions' manipulation. +- Mosaic definition / info model refactored with `MosaicProperties` removed. +- Various bugs fixed in http repositories. +- Various bugs fixed in model and core components + ## [0.13.1] - 26-Jul-2019 **Milestone**: Elephant @@ -161,7 +177,8 @@ The changelog format is based on [Keep a Changelog](https://keepachangelog.com/e **Milestone**: Alpaca - Initial code release. -[0.13.0]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.13.0...v0.13.1 +[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 [0.12.4]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.12.3...v0.12.4 [0.12.3]: https://github.com/nemtech/nem2-sdk-typescript-javascript/compare/v0.12.2...v0.12.3 diff --git a/README.md b/README.md index 5820279214..5e00abf4bc 100644 --- a/README.md +++ b/README.md @@ -5,14 +5,14 @@ [![Coverage Status](https://coveralls.io/repos/github/nemtech/nem2-sdk-typescript-javascript/badge.svg?branch=travis-ci)](https://coveralls.io/github/nemtech/nem2-sdk-typescript-javascript?branch=travis-ci) [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) -The official nem2-sdk for TypeScript and JavaScript, available for browsers, mobile applications, and NodeJS, to work +The official nem2-sdk for TypeScript and JavaScript, available for browsers, mobile applications, and NodeJS, to work with the NEM2 (a.k.a Catapult) ## Important Notes -### _Elephant_ Network Compatibility (catapult-server@0.5.0.1) +### _Elephant_ Network Compatibility (catapult-server@0.7.0.1) -Due to a network upgrade with [catapult-server@elephant](https://github.com/nemtech/catapult-server/releases/tag/v0.5.0.1) version, **it is recommended to use this package's 0.13.1 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.2 version and upwards to use this package with Elephant versioned networks**. The upgrade to this package's [version v0.13.1](https://github.com/nemtech/nem2-sdk-typescript-javascript/releases/tag/v0.13.1) is mandatory for **elephant compatibility**. diff --git a/package-lock.json b/package-lock.json index c393e5d09f..37bc4795c0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "nem2-sdk", - "version": "0.13.1", + "version": "0.13.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index fb93cbbb0e..06c848de5b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nem2-sdk", - "version": "0.13.1", + "version": "0.13.2", "description": "Reactive Nem2 sdk for typescript and javascript", "scripts": { "pretest": "npm run build",