diff --git a/AUTHORS.md b/AUTHORS.md
index fa8be74..ba7b4cb 100644
--- a/AUTHORS.md
+++ b/AUTHORS.md
@@ -4,11 +4,11 @@ This list is sorted by the number of commits per contributor in _descending_ ord
Avatar|Contributor|Contributions
:-:|---|:-:
-|[@myii](https://github.com/myii)|88
+|[@myii](https://github.com/myii)|89
|[@alxwr](https://github.com/alxwr)|38
+|[@baby-gnu](https://github.com/baby-gnu)|31
|[@gravyboat](https://github.com/gravyboat)|28
|[@aboe76](https://github.com/aboe76)|25
-|[@baby-gnu](https://github.com/baby-gnu)|23
|[@nmadhok](https://github.com/nmadhok)|15
|[@whiteinge](https://github.com/whiteinge)|9
|[@rfairburn](https://github.com/rfairburn)|8
@@ -78,4 +78,4 @@ Avatar|Contributor|Contributions
---
-Auto-generated by a [forked version](https://github.com/myii/maintainer) of [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2020-12-23.
+Auto-generated by a [forked version](https://github.com/myii/maintainer) of [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2021-01-12.
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 646c60e..478e0ff 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,43 @@
# Changelog
+# [3.0.0](https://github.com/saltstack-formulas/openssh-formula/compare/v2.0.6...v3.0.0) (2021-01-12)
+
+
+### Code Refactoring
+
+* **map:** compound matchers like parsing with `libmatchers` ([925c86e](https://github.com/saltstack-formulas/openssh-formula/commit/925c86ea698c68f684ba1645a58c88d688e6acc5))
+* **map:** load `defaults.jinja` configuration with `libmapstack` ([174bb68](https://github.com/saltstack-formulas/openssh-formula/commit/174bb68432366a449a8327a9dbb648271f123224))
+* **map:** load `map.jinja` configuration with `libmapstack` ([568bb7c](https://github.com/saltstack-formulas/openssh-formula/commit/568bb7ce4075ee376e8c49a45a1470d252f82ab9))
+* **map:** load formula configuration with `libmatchers` ([ff6b56c](https://github.com/saltstack-formulas/openssh-formula/commit/ff6b56c4a4e282f41ddfc8f379f95096fea0553f))
+
+
+### Documentation
+
+* **map:** document the new `map.jinja` with targeting like syntax ([7ecb24b](https://github.com/saltstack-formulas/openssh-formula/commit/7ecb24bdc1ff84ddac4c7c3e5d8d70c7512f4fb5))
+
+
+### Features
+
+* **map:** use targeting like syntax for configuration ([1be0d87](https://github.com/saltstack-formulas/openssh-formula/commit/1be0d8725ad933034f4e87cc9636bcc5100bd55c))
+* **matchers:** add delimiter option for source definitions ([d69556d](https://github.com/saltstack-formulas/openssh-formula/commit/d69556d5ae79a907d79351d4b9775e0ce2970b39))
+
+
+### Styles
+
+* **mapstack:** variables in macro can't be exported ([7de2d6f](https://github.com/saltstack-formulas/openssh-formula/commit/7de2d6fd756b3e4b7154e660b639d7ce6edb8cfe))
+
+
+### BREAKING CHANGES
+
+* **map:** the configuration `map_jinja:sources` is only
+ configurable with `salt://parameters/map_jinja.yaml`
+ and `salt://{{ tplroot }}/parameters/map_jinja.yaml`
+* **map:** the `map_jinja:config_get_roots` is replaced by
+ compound like `map_jinja:sources`
+* **map:** the two `config_get_lookup` and `config_get` are
+ replaced by `C@:lookup` and `C@`
+ sources
+
## [2.0.6](https://github.com/saltstack-formulas/openssh-formula/compare/v2.0.5...v2.0.6) (2020-12-23)
diff --git a/FORMULA b/FORMULA
index f388d3c..e86cfea 100644
--- a/FORMULA
+++ b/FORMULA
@@ -1,7 +1,7 @@
name: openssh
os: Debian, Ubuntu, Raspbian, RedHat, Fedora, CentOS, Suse, openSUSE, Gentoo, Funtoo, Arch, Manjaro, Alpine, FreeBSD, OpenBSD, Solaris, SmartOS, Windows, MacOS
os_family: Debian, RedHat, Suse, Gentoo, Arch, Alpine, FreeBSD, OpenBSD, Solaris, Windows, MacOS
-version: 2.0.6
+version: 3.0.0
release: 1
minimum_version: 2017.7
summary: openssh formula
diff --git a/docs/AUTHORS.rst b/docs/AUTHORS.rst
index 6cd6170..81f2a6b 100644
--- a/docs/AUTHORS.rst
+++ b/docs/AUTHORS.rst
@@ -15,19 +15,19 @@ This list is sorted by the number of commits per contributor in *descending* ord
- Contributions
* - :raw-html-m2r:``
- `@myii `_
- - 88
+ - 89
* - :raw-html-m2r:``
- `@alxwr `_
- 38
+ * - :raw-html-m2r:``
+ - `@baby-gnu `_
+ - 31
* - :raw-html-m2r:``
- `@gravyboat `_
- 28
* - :raw-html-m2r:``
- `@aboe76 `_
- 25
- * - :raw-html-m2r:``
- - `@baby-gnu `_
- - 23
* - :raw-html-m2r:``
- `@nmadhok `_
- 15
@@ -230,4 +230,4 @@ This list is sorted by the number of commits per contributor in *descending* ord
----
-Auto-generated by a `forked version `_ of `gaocegege/maintainer `_ on 2020-12-23.
+Auto-generated by a `forked version `_ of `gaocegege/maintainer `_ on 2021-01-12.
diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst
index 35c582e..07caad3 100644
--- a/docs/CHANGELOG.rst
+++ b/docs/CHANGELOG.rst
@@ -2,6 +2,58 @@
Changelog
=========
+`3.0.0 `_ (2021-01-12)
+---------------------------------------------------------------------------------------------------------
+
+Code Refactoring
+^^^^^^^^^^^^^^^^
+
+
+* **map:** compound matchers like parsing with ``libmatchers`` (\ `925c86e `_\ )
+* **map:** load ``defaults.jinja`` configuration with ``libmapstack`` (\ `174bb68 `_\ )
+* **map:** load ``map.jinja`` configuration with ``libmapstack`` (\ `568bb7c `_\ )
+* **map:** load formula configuration with ``libmatchers`` (\ `ff6b56c `_\ )
+
+Documentation
+^^^^^^^^^^^^^
+
+
+* **map:** document the new ``map.jinja`` with targeting like syntax (\ `7ecb24b `_\ )
+
+Features
+^^^^^^^^
+
+
+* **map:** use targeting like syntax for configuration (\ `1be0d87 `_\ )
+* **matchers:** add delimiter option for source definitions (\ `d69556d `_\ )
+
+Styles
+^^^^^^
+
+
+* **mapstack:** variables in macro can't be exported (\ `7de2d6f `_\ )
+
+BREAKING CHANGES
+^^^^^^^^^^^^^^^^
+
+
+* **map:** the configuration ``map_jinja:sources`` is only
+ .. code-block::
+
+ configurable with `salt://parameters/map_jinja.yaml`
+ and `salt://{{ tplroot }}/parameters/map_jinja.yaml`
+
+* **map:** the ``map_jinja:config_get_roots`` is replaced by
+ .. code-block::
+
+ compound like `map_jinja:sources`
+
+* **map:** the two ``config_get_lookup`` and ``config_get`` are
+ .. code-block::
+
+ replaced by `C@:lookup` and `C@`
+ sources
+
`2.0.6 `_ (2020-12-23)
---------------------------------------------------------------------------------------------------------