Browse Source

chore(release): 1.2.0

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

+ 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.2.0](https://devt.de///compare/v1.1.2...v1.2.0) (2021-05-04)
+
+
+### Features
+
+* ECAL support for EliasDB ([e2ec3a3](https://devt.de///commit/e2ec3a30d210c44ba4bb26bcaabff507e028f515))
+
 ### [1.1.2](https://devt.de///compare/v1.1.1...v1.1.2) (2021-04-25)
 
 ### [1.1.1](https://devt.de///compare/v1.1.0...v1.1.1) (2020-12-07)

+ 1 - 1
config/config.go

@@ -25,7 +25,7 @@ import (
 /*
 ProductVersion is the current version of EliasDB
 */
-const ProductVersion = "1.1.2"
+const ProductVersion = "1.2.0"
 
 /*
 DefaultConfigFile is the default config file which will be used to configure EliasDB

+ 1 - 1
ecal.md

@@ -8,7 +8,7 @@ ECAL was added for the following use-cases:
 - Enforce certain aspects of a database schema
 - Providing back-end logic for web applications using EliasDB
 
-The source of EliasDB comes with a [chat example](examples/game/doc/chat.md) containing a simple ECAL script which adds a timestamp to nodes and a [game example](examples/game/doc/game.md) which demonstrates a more complex application of ECAL.
+The source of EliasDB comes with a [chat example](examples/chat/doc/chat.md) containing a simple ECAL script which adds a timestamp to nodes and a [game example](examples/game/doc/game.md) which demonstrates a more complex application of ECAL.
 
 ECAL related config values:
 --