From d8d51dd028dc598376d0c831d5ba417d2d5aafbd Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Thu, 7 Apr 2022 20:59:36 -0700 Subject: [PATCH] chore(release): 0.1.2 --- CHANGELOG.md | 9 +++++++++ package.json | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97a633d..f73533f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ 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. +### [0.1.2](https://github.com/NicTool/dns-nameserver/compare/v0.1.0...v0.1.2) (2022-04-08) + + +### Features + +* add additional knot fixed sections ([b6acaa3](https://github.com/NicTool/dns-nameserver/commit/b6acaa301de2247059ec13dc0c2701aa36a101a0)) +* add NSD parser ([fa49d1d](https://github.com/NicTool/dns-nameserver/commit/fa49d1da91e3e3bb2ac40d03bdfe60ea71b03710)) +* parsers added for Knot ([#2](https://github.com/NicTool/dns-nameserver/issues/2)) ([139235e](https://github.com/NicTool/dns-nameserver/commit/139235e8acd105ce872cddb22224e1470c972cbe)) + ### [0.1.1](https://github.com/NicTool/dns-nameserver/compare/v0.1.0...v0.1.1) (2022-04-07) diff --git a/package.json b/package.json index c9c2426..b6ed0d0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dns-nameserver", - "version": "0.1.1", + "version": "0.1.2", "description": "DNS Nameserver", "main": "index.js", "bin": {}, @@ -10,7 +10,7 @@ "scripts": { "bind": "npx -p nearley nearleyc src/bind.ne -o dist/bind.js", "knot": "npx -p nearley nearleyc src/knot.ne -o dist/knot.js", - "nsd" : "npx -p nearley nearleyc src/nsd-moo.ne -o dist/nsd.js", + "nsd": "npx -p nearley nearleyc src/nsd-moo.ne -o dist/nsd.js", "mara": "npx -p nearley nearleyc src/mara.ne -o dist/mara.js", "grammar": "npm run bind && npm run knot && npm run nsd", "lint": "npx eslint index.js test/*.js",