diff --git a/CHANGELOG.md b/CHANGELOG.md index 55a5f705..44c42b01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,14 +7,13 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [unreleased] - xxxx.xx.xx -### Added - -### Changed +## [0.7.1] - 2021-03-09 ### Fixed - +- [CSE] Fixed crash when receiving no content in CREATE or UPDATE request. +- [CSE] Improved debug response when encountering a wrong type during validation. +- [CSE] Improved statistics output when running inside a Jupyter Notebook. ## [0.7.0] - 2021-03-06 diff --git a/README.md b/README.md index 8da4f24e..2e1383da 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ # ACME oneM2M CSE An open source CSE Middleware for Education. -Version 0.8.0-DEV +Version 0.7.1 [![oneM2M](https://img.shields.io/badge/oneM2M-f00)](https://www.onem2m.org) [![Python](https://img.shields.io/badge/Python-3.8-blue)](https://www.python.org) [![Maintenance](https://img.shields.io/badge/Maintained-Yes-green.svg)](https://github.com/ankraft/ACME-oneM2M-CSE/graphs/commit-activity) [![License](https://img.shields.io/badge/License-BSD%203--Clause-green)](LICENSE) [![MyPy](https://img.shields.io/badge/MyPy-covered-green)](LICENSE) [![Twitter](https://img.shields.io/twitter/url/https/twitter.com/acmeCSE.svg?style=social&label=%40acmeCSE)](https://twitter.com/acmeCSE) diff --git a/acme/Constants.py b/acme/Constants.py index abbae100..ba885b71 100644 --- a/acme/Constants.py +++ b/acme/Constants.py @@ -12,7 +12,7 @@ class Constants(object): # ACME Version - version = '0.8.0-dev' + version = '0.7.1' # Supported release vesions supportedReleaseVersions = ['1', '2', '2a', '3', '4']