summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md11
-rw-r--r--src/etoolkit/__init__.py2
2 files changed, 12 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2c16909..d48f9a9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
1# Changelog 1# Changelog
2 2
3## [1.2.0](https://github.com/blackm0re/etoolkit/tree/1.2.0) (2022-04-04)
4
5[Full Changelog](https://github.com/blackm0re/etoolkit/compare/1.1.0...1.2.0)
6
7**Changes:**
8
9- instances with names starting with *_* are treated as abstract and not listed
10
11- new *%p* macro - parent value (for the same key)
12
13
3## [1.1.0](https://github.com/blackm0re/etoolkit/tree/1.1.0) (2022-03-14) 14## [1.1.0](https://github.com/blackm0re/etoolkit/tree/1.1.0) (2022-03-14)
4 15
5[Full Changelog](https://github.com/blackm0re/etoolkit/compare/1.0.0...1.1.0) 16[Full Changelog](https://github.com/blackm0re/etoolkit/compare/1.0.0...1.1.0)
diff --git a/src/etoolkit/__init__.py b/src/etoolkit/__init__.py
index ae6465c..b49bbcf 100644
--- a/src/etoolkit/__init__.py
+++ b/src/etoolkit/__init__.py
@@ -17,7 +17,7 @@
17from .etoolkit import EtoolkitInstance, EtoolkitInstanceError 17from .etoolkit import EtoolkitInstance, EtoolkitInstanceError
18 18
19__author__ = 'Simeon Simeonov' 19__author__ = 'Simeon Simeonov'
20__version__ = '1.2.0-beta1' 20__version__ = '1.2.0'
21__license__ = 'GPL3' 21__license__ = 'GPL3'
22 22
23 23