Skip to content

Commit

Permalink
Release v1.1.2 (#17)
Browse files Browse the repository at this point in the history
- publish npm package in @NicTool namespace
  • Loading branch information
msimerson authored May 29, 2022
1 parent 0bba113 commit eaa05ec
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
#### N.N.N - YYYY-MM-DD


#### 1.1.2 - 2022-05-29

- chore: publish npm package in @nictool namespace


#### 1.1.2 - 2022-05-28

- chore: replace .release scripts with submodule
Expand Down
2 changes: 1 addition & 1 deletion bin/dns-zone.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import * as bind from '../lib/bind.js'
import * as tinydns from '../lib/tinydns.js'
import * as maradns from '../lib/maradns.js'

import * as RR from 'dns-resource-record'
import * as RR from '@nictool/dns-resource-record'

const rr = new RR.A(null)

Expand Down
2 changes: 1 addition & 1 deletion lib/bind.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import fs from 'fs/promises'
import os from 'os'
import path from 'path'

import * as RR from 'dns-resource-record'
import * as RR from '@nictool/dns-resource-record'

import * as dz from '../index.js'

Expand Down
2 changes: 1 addition & 1 deletion lib/maradns.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import os from 'os'

import * as RR from 'dns-resource-record'
import * as RR from '@nictool/dns-resource-record'

import * as dz from '../index.js'

Expand Down
2 changes: 1 addition & 1 deletion lib/tinydns.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

import * as RR from 'dns-resource-record'
import * as RR from '@nictool/dns-resource-record'

import * as zone from '../index.js'

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dns-zone-validator",
"version": "1.1.1",
"name": "@nictool/dns-zone",
"version": "1.1.2",
"description": "DNS Zone",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -40,6 +40,6 @@
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.1",
"dns-resource-record": "^1.1.1"
"@nictool/dns-resource-record": "^1.1.1"
}
}
2 changes: 1 addition & 1 deletion test/bind.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import assert from 'assert'
import fs from 'fs/promises'
import os from 'os'

import * as RR from 'dns-resource-record'
import * as RR from '@nictool/dns-resource-record'
import * as bind from '../lib/bind.js'

beforeEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion test/maradns.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import assert from 'assert'
import fs from 'fs/promises'
import os from 'os'

import * as RR from 'dns-resource-record'
import * as RR from '@nictool/dns-resource-record'
import mara from '../lib/maradns.js'

beforeEach(function () {
Expand Down
2 changes: 1 addition & 1 deletion test/zone.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import assert from 'assert'

import ZONE from '../lib/zone.js'
import * as RR from 'dns-resource-record'
import * as RR from '@nictool/dns-resource-record'

const testSOA = new RR.SOA({
owner : 'example.com.',
Expand Down

0 comments on commit eaa05ec

Please sign in to comment.