chore: release v1.2.0

stable
vibhu 2025-07-28 19:15:53 +05:30
parent 92508d2556
commit eebd1ebb44
3 changed files with 34 additions and 3 deletions

View File

@ -1,5 +1,36 @@
# Changelog # Changelog
## [1.2.0](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/compare/v0.1.0...v1.2.0) (2025-07-28)
### Bug Fixes
* add conditional watchdog init to prevent reinitialization if already running in bootloader code ([ca3d7ec](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/ca3d7ec55574e6f5337473e0b9e6a055539f26e9))
* add watchdog support and MCU recovery logic for fault scenarios ([6b74e25](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/6b74e25455c36ee1ad1600a8e1584497b67744b7))
### Performance Improvements
* refactor code ([f346070](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/f346070551f59cad80d32e8e15f22b495f1a4e26))
## [1.1.1](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/compare/v0.1.0...v1.2.0) (2025-07-11)
### Features
* add npm package for releasing the code ([bb1c37b](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/bb1c37b9107e55207ac03f95312879c83be98387))
## [1.1.0](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/compare/v0.1.0...v1.2.0) (2025-07-10)
### Features
* Add UART3 functionality and parse specific IDs ([9d4bd99](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/9d4bd991d52c7f84cb9429622e55f04b21471ec4))
* Parse UART data from CC and forward over CAN ([dfdb8d0](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/dfdb8d0c6409fbcbb149b6d40d270fa8ca85ae50))
* Send ACK before jumping to bootloader ([2e4b442](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/2e4b44259ad23507596e698e043a246ac5f24acb))
* send SMD and false touch status over CAN and UART ([f29d164](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/f29d164142f6022df54e2dfabda2a2d5b9302ae0))
* Update clock configuration for UART3 ([e3bdc83](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/e3bdc83387a1ac012eacfddf43974ca4fad0d8cd))
### Bug Fixes
* all ids are being replaced by abcdef ([892b038](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/892b038c1ff1fe36eb3e21d102e4ab0d07fb892d))
* Correct relay pin configuration and bit mapping ([17445c1](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/17445c182e1cfbb48c2931832ecb0125e1228f91))
* remove CAN reinit when bus goes off, add api to restore busoff error ([d339104](https://gitea.vecmocon.com/Vecmocon_Technologies/cantouart_ti/commit/d3391047d6f1f619db31a903f447afb7f7a9142c))
## 0.1.0 (2025-07-23) ## 0.1.0 (2025-07-23)
### Features ### Features

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "cantouart_ti", "name": "cantouart_ti",
"version": "1.1.1", "version": "1.2.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "cantouart_ti", "name": "cantouart_ti",
"version": "1.1.1", "version": "1.2.0",
"license": "ISC" "license": "ISC"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "cantouart_ti", "name": "cantouart_ti",
"version": "1.1.1", "version": "1.2.0",
"description": "TI_MCU_firmware", "description": "TI_MCU_firmware",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {