Browse Source

chore(release): 1.3.0

Matthias Ladkau 3 years ago
parent
commit
2a64ea98d7
3 changed files with 9 additions and 2 deletions
  1. 7 0
      CHANGELOG.md
  2. 1 1
      config/config.go
  3. 1 1
      scope/helper.go

+ 7 - 0
CHANGELOG.md

@@ -2,6 +2,13 @@
 
 All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
 
+## [1.3.0](https://devt.de///compare/v1.2.0...v1.3.0) (2020-12-29)
+
+
+### Features
+
+* Adding conversion helper for JSON objects ([1050423](https://devt.de///commit/1050423c453169f22da029a52f131e2d3054a1f1))
+
 ## [1.2.0](https://devt.de///compare/v1.1.0...v1.2.0) (2020-12-26)
 
 

+ 1 - 1
config/config.go

@@ -23,7 +23,7 @@ import (
 /*
 ProductVersion is the current version of ECAL
 */
-const ProductVersion = "1.2.0"
+const ProductVersion = "1.3.0"
 
 /*
 Known configuration options for ECAL

+ 1 - 1
scope/helper.go

@@ -94,7 +94,7 @@ func ConvertJSONToECALObject(v interface{}) interface{} {
 }
 
 /*
-ConvertECALToJSONbject converts an ECAL container structure into an object which
+ConvertECALToJSONObject converts an ECAL container structure into an object which
 can be marshalled into a JSON string.
 */
 func ConvertECALToJSONObject(v interface{}) interface{} {