Updated version to 1.3.3 on 2024-02-02. Groundhog day!

This commit is contained in:
Steve Karg
2024-02-02 16:40:06 -06:00
parent e450da87f5
commit d9fe85eee1
2 changed files with 21 additions and 9 deletions
+14 -2
View File
@@ -5,7 +5,7 @@ Linux, MacOS, BSD, and Windows
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
The git repositories are hosted at the following sites:
@@ -14,6 +14,18 @@ The git repositories are hosted at the following sites:
## [Unreleased]
### Security
### Added
### Changed
### Fixed
### Removed
## [1.3.3] - 2024-02-2
### Security
* Secured the following services by refactoring the size check
@@ -76,7 +88,7 @@ The git repositories are hosted at the following sites:
* Changed example STM32F4xx DLMSTP module to use core MSTP FSM
* Changed automac module from ports into bacnet/datalink and added a unit
test. (#557)
* Change Life-Safety-Point object to use Create/Delete-Object (#555)
* Changed Life-Safety-Point object to use Create/Delete-Object (#555)
* Changed npdu_encode function to return length when given a NULL buffer. (#549)
* Changed NPDU handler use local buffer which reduced TSM dependency. (#549)
+2 -2
View File
@@ -29,8 +29,8 @@
#define BACNET_VERSION(x,y,z) (((x)<<16)+((y)<<8)+(z))
#endif
#define BACNET_VERSION_TEXT "1.3.2"
#define BACNET_VERSION_CODE BACNET_VERSION(1,3,2)
#define BACNET_VERSION_TEXT "1.3.3"
#define BACNET_VERSION_CODE BACNET_VERSION(1,3,3)
#define BACNET_VERSION_MAJOR ((BACNET_VERSION_CODE>>16)&0xFF)
#define BACNET_VERSION_MINOR ((BACNET_VERSION_CODE>>8)&0xFF)
#define BACNET_VERSION_MAINTENANCE (BACNET_VERSION_CODE&0xFF)