Skip to content

Commit a591ff9

Browse files
committed
adding changelog and 1.2.1 bump version
1 parent 0010db7 commit a591ff9

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,31 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.2.1] - 2020-10-24
6+
7+
### Added
8+
9+
- `package-lock.json` to ensure always exact versions during installation
10+
11+
### Fixed
12+
13+
- Output API was changed by mistake, now msg.payload still outputs `class` and `score` keys for each classification as in `v1.1.0+` releases
14+
- When selecting all predictions without filter only one result was showing up
15+
516
## [1.2.0] - 2020-10-23
617

718
### Added
819

920
- Compatibility with official Node-RED Dockerized image based on [Alpine](https://hub.docker.com/_/alpine) image
1021
- Compatibility with Raspberry Pi
11-
- [`pureimage`](https://www.npmjs.com/package/pureimage) package dependency to manage buffer images using pure javascript - [#17](https://github.com/bonastreyair/node-red-contrib-teachable-machine/issues/17)
12-
- [`node-fetch`](https://www.npmjs.com/package/node-fetch) package dependency to manage http request to obtain the model info
22+
- [`pureimage`](https://www.npmjs.com/package/pureimage) npm package dependency to manage buffer images using pure javascript - [#17](https://github.com/bonastreyair/node-red-contrib-teachable-machine/issues/17)
23+
- [`node-fetch`](https://www.npmjs.com/package/node-fetch) npm package dependency to manage http request to obtain the model info
1324

1425
### Removed
1526

16-
- `@teachablemachine/image`, `jsdom` and `canvas` npm packages
27+
- `@teachablemachine/image` npm package dependency
28+
- `jsdom` npm package dependency
29+
- `canvas` npm package dependency
1730

1831
## [1.1.5] - 2020-09-08
1932

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-contrib-teachable-machine",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Simplifies integration with Teachable Machine models from Google",
55
"dependencies": {
66
"node-fetch": "2.6.1",
@@ -16,7 +16,7 @@
1616
"google"
1717
],
1818
"license": "Apache-2.0",
19-
"node-red" : {
19+
"node-red": {
2020
"nodes": {
2121
"teachable machine": "teachable_machine.js"
2222
}
@@ -29,4 +29,4 @@
2929
"name": "Yair Bonastre",
3030
"email": "bonastreyair@gmail.com"
3131
}
32-
}
32+
}

0 commit comments

Comments
 (0)