diff --git a/src/index.ts b/src/index.ts index ad3d735..9c1cda0 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ import { encrypt } from './encrypt'; -const tag = '/noise/1.0.0'; +const tag = '/noise'; export { tag, diff --git a/test/index.test.ts b/test/index.test.ts index 54b2c0d..d13bbbe 100644 --- a/test/index.test.ts +++ b/test/index.test.ts @@ -3,7 +3,7 @@ import { tag, encrypt} from "../src"; describe("Index", () => { it("should expose right tag and encrypt function", () => { - expect(tag).to.equal('/noise/1.0.0'); + expect(tag).to.equal('/noise'); expect(typeof(encrypt)).to.equal('function'); }) });